Commit 9558bbd 1 parent 9dc93a1 commit 9558bbd Copy full SHA for 9558bbd
File tree 1 file changed +6
-1
lines changed
src/EasyApp/Gui/Components
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -144,19 +144,22 @@ EaElements.Dialog {
144
144
spacing: EaStyle .Sizes .fontPixelSize
145
145
146
146
EaElements .Label {
147
+ enabled: false
147
148
anchors .verticalCenter : parent .verticalCenter
148
149
text: qsTr (" Check on application start" ) + " :"
149
150
}
150
151
151
152
EaElements .CheckBox {
152
153
id: updatesCheckBox
154
+ enabled: false
153
155
padding: 0
154
156
checked: EaGlobals .Vars .checkUpdateOnAppStart
155
157
onCheckedChanged: EaGlobals .Vars .checkUpdateOnAppStart = checked
156
158
}
157
159
}
158
160
159
161
EaElements .SideBarButton {
162
+ enabled: false
160
163
width: checkOnAppStartRow .width
161
164
highlighted: true
162
165
text: qsTr (" Check now" )
@@ -295,17 +298,19 @@ EaElements.Dialog {
295
298
296
299
// Language
297
300
EaElements .Label {
301
+ enabled: false
298
302
text: qsTr (" Language" ) + " :"
299
303
}
300
304
301
305
EaElements .ComboBox {
306
+ enabled: false
302
307
valueRole: " code"
303
308
textRole: " name"
304
309
305
310
model: EaGlobals .Vars .translator .languages
306
311
307
312
onActivated: EaGlobals .Vars .translator .selectLanguage (currentIndex)
308
- Component .onCompleted : currentIndex = EaGlobals .Vars .translator .defaultLanguageIndex ()
313
+ Component .onCompleted : currentIndex = 2 // EaGlobals.Vars.translator.defaultLanguageIndex()
309
314
}
310
315
// Language
311
316
You can’t perform that action at this time.
0 commit comments