- removed the setting for HDPI from Preferences and QSettings: QT6 does it automatically now

This commit is contained in:
Marius Stanciu
2021-08-28 22:42:44 +03:00
committed by Marius Stanciu
parent 4afc706e20
commit 30802901c7
4 changed files with 7 additions and 54 deletions

View File

@@ -1617,13 +1617,14 @@ class MainGUI(QtWidgets.QMainWindow):
self.clear_btn.setToolTip(
_("Clear the GUI settings for FlatCAM,\n"
"such as: layout, gui state, style, hdpi support etc.")
"such as: layout, gui state, style etc.")
)
self.pref_tab_bottom_layout_1.addWidget(self.clear_btn)
self.pref_tab_bottom_layout_2 = QtWidgets.QHBoxLayout()
self.pref_tab_bottom_layout_2.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight | QtCore.Qt.AlignmentFlag.AlignVCenter)
self.pref_tab_bottom_layout_2.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight |
QtCore.Qt.AlignmentFlag.AlignVCenter)
self.pref_tab_bottom_layout.addLayout(self.pref_tab_bottom_layout_2)
self.pref_apply_button = FCButton()