Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
7b385741
Commit
7b385741
authored
Jun 07, 2019
by
Christoffer Ackelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QT: Made font descriptions a little more specific.
parent
48ccce51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
xtt/lib/ge/qt/ge_qt.cqt
xtt/lib/ge/qt/ge_qt.cqt
+2
-3
xtt/lib/glow/qt/glow_draw_qt.cqt
xtt/lib/glow/qt/glow_draw_qt.cqt
+1
-1
No files found.
xtt/lib/ge/qt/ge_qt.cqt
View file @
7b385741
...
@@ -1727,10 +1727,9 @@ GeQt::GeQt(void* x_parent_ctx, ldh_tSesContext x_ldhses, int x_exit_when_close,
...
@@ -1727,10 +1727,9 @@ GeQt::GeQt(void* x_parent_ctx, ldh_tSesContext x_ldhses, int x_exit_when_close,
tools_textfont->addItem("Helvetica", glow_eFont_Helvetica);
tools_textfont->addItem("Helvetica", glow_eFont_Helvetica);
tools_textfont->addItem("Times", glow_eFont_Times);
tools_textfont->addItem("Times", glow_eFont_Times);
tools_textfont->addItem(
tools_textfont->addItem(
"
New Century Schoolbook
", glow_eFont_NewCenturySchoolbook);
"
Century Schoolbook L
", glow_eFont_NewCenturySchoolbook);
tools_textfont->addItem("Courier", glow_eFont_Courier);
tools_textfont->addItem("Courier
10 Pitch
", glow_eFont_Courier);
tools_textfont->addItem("Lucida Sans", glow_eFont_LucidaSans);
tools_textfont->addItem("Lucida Sans", glow_eFont_LucidaSans);
tools_textfont->setFont(QFont("Courier"));
// Bold checkbutton
// Bold checkbutton
QCheckBox* bold = new QCheckBox("Bold");
QCheckBox* bold = new QCheckBox("Bold");
...
...
xtt/lib/glow/qt/glow_draw_qt.cqt
View file @
7b385741
...
@@ -144,7 +144,7 @@ static QFont get_font(int font_idx, int painter_type, double size)
...
@@ -144,7 +144,7 @@ static QFont get_font(int font_idx, int painter_type, double size)
res = QFont("Century Schoolbook L");
res = QFont("Century Schoolbook L");
break;
break;
case glow_eFont_Courier:
case glow_eFont_Courier:
res = QFont("Courier 10
p
itch");
res = QFont("Courier 10
P
itch");
break;
break;
default:
default:
res = QFont("Lucida Sans");
res = QFont("Lucida Sans");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment