mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 14:34:01 -06:00
Style: Use "" for strings not ''
This commit is contained in:
parent
7cc493ad91
commit
0a6562a8f1
24 changed files with 242 additions and 240 deletions
|
@ -50,13 +50,13 @@ UM.AngledCornerRectangle {
|
|||
modesModel: modesListModel;
|
||||
|
||||
currentModeIndex: {
|
||||
var index = parseInt(UM.Preferences.getValue('cura/active_mode'))
|
||||
var index = parseInt(UM.Preferences.getValue("cura/active_mode"))
|
||||
if(index) {
|
||||
return index;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
onCurrentModeIndexChanged: UM.Preferences.setValue('cura/active_mode', currentModeIndex);
|
||||
onCurrentModeIndexChanged: UM.Preferences.setValue("cura/active_mode", currentModeIndex);
|
||||
}
|
||||
|
||||
Loader {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue