- modified the default values for the METRIC system; the app now starts in the METRIC units since the majority of the world use the METRIC units system

This commit is contained in:
Marius Stanciu
2019-12-02 23:28:27 +02:00
committed by Marius
parent 7cb07a7dc6
commit e9470df4c5
3 changed files with 90 additions and 89 deletions

View File

@@ -1049,8 +1049,8 @@ class GeneralAppPrefGroupUI(OptionsGroupUI):
self.unitslabel.setToolTip(_("The default value for FlatCAM units.\n"
"Whatever is selected here is set every time\n"
"FLatCAM is started."))
self.units_radio = RadioSet([{'label': _('IN'), 'value': 'IN'},
{'label': _('MM'), 'value': 'MM'}])
self.units_radio = RadioSet([{'label': _('MM'), 'value': 'MM'},
{'label': _('IN'), 'value': 'IN'}])
grid0.addWidget(self.unitslabel, 0, 0)
grid0.addWidget(self.units_radio, 0, 1)