From 0ee51140129e5f484161ca9ebd66e1d3128ad48a Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 5 Jun 2019 13:22:12 +0300 Subject: [PATCH] - some layout changes in Edit -> Preferences such that the German translation (longer words than English) to fit correctly --- README.md | 1 + flatcamGUI/FlatCAMGUI.py | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2387152c..a8f753b3 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing. 5.06.2019 - updated translations +- some layout changes in Edit -> Preferences such that the German translation (longer words than English) to fit correctly 4.06.2019 diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py index ca8e16ae..8efa022d 100644 --- a/flatcamGUI/FlatCAMGUI.py +++ b/flatcamGUI/FlatCAMGUI.py @@ -3122,7 +3122,7 @@ class GeneralPreferencesUI(QtWidgets.QWidget): self.setLayout(self.layout) self.general_app_group = GeneralAppPrefGroupUI() - self.general_app_group.setFixedWidth(250) + self.general_app_group.setFixedWidth(280) self.general_gui_group = GeneralGUIPrefGroupUI() self.general_gui_group.setFixedWidth(250) @@ -3177,13 +3177,13 @@ class ExcellonPreferencesUI(QtWidgets.QWidget): self.excellon_gen_group = ExcellonGenPrefGroupUI() self.excellon_gen_group.setFixedWidth(220) self.excellon_opt_group = ExcellonOptPrefGroupUI() - self.excellon_opt_group.setFixedWidth(250) + self.excellon_opt_group.setFixedWidth(290) self.excellon_exp_group = ExcellonExpPrefGroupUI() self.excellon_exp_group.setFixedWidth(250) self.excellon_adv_opt_group = ExcellonAdvOptPrefGroupUI() self.excellon_adv_opt_group.setFixedWidth(250) self.excellon_editor_group = ExcellonEditorPrefGroupUI() - self.excellon_editor_group.setFixedWidth(220) + self.excellon_editor_group.setFixedWidth(260) self.vlay = QtWidgets.QVBoxLayout() self.vlay.addWidget(self.excellon_opt_group) @@ -3207,9 +3207,9 @@ class GeometryPreferencesUI(QtWidgets.QWidget): self.geometry_gen_group = GeometryGenPrefGroupUI() self.geometry_gen_group.setFixedWidth(220) self.geometry_opt_group = GeometryOptPrefGroupUI() - self.geometry_opt_group.setFixedWidth(250) + self.geometry_opt_group.setFixedWidth(300) self.geometry_adv_opt_group = GeometryAdvOptPrefGroupUI() - self.geometry_adv_opt_group.setFixedWidth(250) + self.geometry_adv_opt_group.setFixedWidth(270) self.geometry_editor_group = GeometryEditorPrefGroupUI() self.geometry_editor_group.setFixedWidth(250) @@ -3287,7 +3287,7 @@ class CNCJobPreferencesUI(QtWidgets.QWidget): self.setLayout(self.layout) self.cncjob_gen_group = CNCJobGenPrefGroupUI() - self.cncjob_gen_group.setFixedWidth(270) + self.cncjob_gen_group.setFixedWidth(320) self.cncjob_opt_group = CNCJobOptPrefGroupUI() self.cncjob_opt_group.setFixedWidth(260) self.cncjob_adv_opt_group = CNCJobAdvOptPrefGroupUI()