diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-12 00:13:17 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-12 00:13:17 (GMT) |
commit | e58ffa958be2c23b9931b82fa5587bc8f0fdd5b3 (patch) | |
tree | bf8beb5baa055c0ae5b1a6ee8e22920283f6a7e4 /src/mainwin.cc | |
parent | f211077d25c6dd50c3e1e9ef868aefaa1e955634 (diff) |
bugfix: Default font size was set to 0 - will now be 12
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index 228e981..3243847 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -177,7 +177,7 @@ MainWindow::MainWindow(const QString &filename) editor->setTabStopWidth(30); #endif editor->setLineWrapping(true); // Not designable - setFont("", 0); // Init default font + setFont("", 12); // Init default font this->glview->statusLabel = new QLabel(this); statusBar()->addWidget(this->glview->statusLabel); |