Commit 7b385741 authored by Christoffer Ackelman's avatar Christoffer Ackelman

QT: Made font descriptions a little more specific.

parent 48ccce51
......@@ -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("Times", glow_eFont_Times);
tools_textfont->addItem(
"New Century Schoolbook", glow_eFont_NewCenturySchoolbook);
tools_textfont->addItem("Courier", glow_eFont_Courier);
"Century Schoolbook L", glow_eFont_NewCenturySchoolbook);
tools_textfont->addItem("Courier 10 Pitch", glow_eFont_Courier);
tools_textfont->addItem("Lucida Sans", glow_eFont_LucidaSans);
tools_textfont->setFont(QFont("Courier"));
// Bold checkbutton
QCheckBox* bold = new QCheckBox("Bold");
......
......@@ -144,7 +144,7 @@ static QFont get_font(int font_idx, int painter_type, double size)
res = QFont("Century Schoolbook L");
break;
case glow_eFont_Courier:
res = QFont("Courier 10 pitch");
res = QFont("Courier 10 Pitch");
break;
default:
res = QFont("Lucida Sans");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment