Coding style
This commit is contained in:
parent
0a73ce2850
commit
757e1d4a3e
@ -217,11 +217,11 @@ Rectangle {
|
|||||||
text: "Ok"
|
text: "Ok"
|
||||||
onClicked: {
|
onClicked: {
|
||||||
if (main.currentItem.saveConfig !== undefined) {
|
if (main.currentItem.saveConfig !== undefined) {
|
||||||
main.currentItem.saveConfig()
|
main.currentItem.saveConfig();
|
||||||
} else {
|
} else {
|
||||||
root.saveConfig()
|
root.saveConfig();
|
||||||
}
|
}
|
||||||
configDialog.close()
|
configDialog.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
QtControls.Button {
|
QtControls.Button {
|
||||||
@ -229,9 +229,9 @@ Rectangle {
|
|||||||
text: "Apply"
|
text: "Apply"
|
||||||
onClicked: {
|
onClicked: {
|
||||||
if (main.currentItem.saveConfig !== undefined) {
|
if (main.currentItem.saveConfig !== undefined) {
|
||||||
main.currentItem.saveConfig()
|
main.currentItem.saveConfig();
|
||||||
} else {
|
} else {
|
||||||
root.saveConfig()
|
root.saveConfig();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user