From 83eaf3e57e964de2fb726e13a65439d6a555cd63 Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Sat, 6 Jun 2015 18:54:38 +0200 Subject: [PATCH] Reduce hardcoded size Reduce hardcoded font size. --- relational_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relational_gui.py b/relational_gui.py index 70b9890..13e9e23 100755 --- a/relational_gui.py +++ b/relational_gui.py @@ -106,7 +106,7 @@ if __name__ == "__main__": ui.setupUi(form) if sys.platform.startswith('win'): winFont = 'Cambria' - size = 12 + size = 10 increment = 4 symbolFont = 'Segoe UI Symbol' form.setFont(QtGui.QFont('Dejavu Sans',size))