QTfrontend/ui/page/pageoptions.cpp
branchui-scaling
changeset 13389 24b531dcebe7
parent 13227 26c739440bef
child 13390 0135e64c6c66
--- a/QTfrontend/ui/page/pageoptions.cpp	Wed May 16 10:11:00 2018 +0200
+++ b/QTfrontend/ui/page/pageoptions.cpp	Wed May 16 18:09:13 2018 +0200
@@ -683,6 +683,22 @@
             BtnAssociateFiles->setText(QPushButton::tr("Associate file extensions"));
             BtnAssociateFiles->setVisible(!custom_data && !custom_config);
             groupMisc->layout()->addWidget(BtnAssociateFiles, 4, 0, 1, 2);
+
+            // Divider
+
+            groupMisc->addDivider(); // row 5
+
+            QLabel *labelChatSize = new QLabel(groupMisc);
+            labelChatSize->setText(QLabel::tr("Chat size in percent"));
+            groupMisc->layout()->addWidget(labelChatSize, 6, 0);
+
+            // Chat size adjustment
+            sbChatSize = new QSpinBox(groupMisc);
+            sbChatSize->setMinimum(80);
+            sbChatSize->setMaximum(2000);
+            sbChatSize->setValue(100);
+            groupMisc->layout()->addWidget(sbChatSize, 6, 1);
+
         }
 
 #ifdef __APPLE__