- added a default properties tab which will hold a set of information's about the application

This commit is contained in:
Marius Stanciu
2020-10-23 18:46:55 +03:00
committed by Marius
parent 55b4fbc3d8
commit 427118c495
17 changed files with 1077 additions and 918 deletions

View File

@@ -253,9 +253,9 @@ class InvertUI:
"- bevel -> the lines are joined by a third line")
)
self.join_radio = RadioSet([
{'label': 'Rounded', 'value': 'r'},
{'label': 'Square', 'value': 's'},
{'label': 'Bevel', 'value': 'b'}
{'label': _('Rounded'), 'value': 'r'},
{'label': _('Square'), 'value': 's'},
{'label': _('Bevel'), 'value': 'b'}
], orientation='vertical', stretch=False)
grid0.addWidget(self.join_label, 7, 0, 1, 2)