Updating qmldirs
This commit is contained in:
parent
f8ce98d4ad
commit
c2eae30bd6
5 changed files with 13 additions and 10 deletions
|
@ -71,8 +71,8 @@ ScrollView {
|
||||||
id: typeVisibilityCheckBox
|
id: typeVisibilityCheckBox
|
||||||
checked: Modules.Objects.currentObjects[objType] != undefined ? Modules.Objects.currentObjects[objType].every(obj => obj.visible) : true
|
checked: Modules.Objects.currentObjects[objType] != undefined ? Modules.Objects.currentObjects[objType].every(obj => obj.visible) : true
|
||||||
onClicked: {
|
onClicked: {
|
||||||
for(var obj of Modules.Objects.currentObjects[objType]) obj.visible = this.checked
|
for(const obj of Modules.Objects.currentObjects[objType]) obj.visible = this.checked
|
||||||
for(var obj of objTypeList.editingRows) obj.objVisible = this.checked
|
for(const obj of objTypeList.editingRows) obj.objVisible = this.checked
|
||||||
objectListList.changed()
|
objectListList.changed()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -227,7 +227,7 @@ Item {
|
||||||
function deleteRecursively(object) {
|
function deleteRecursively(object) {
|
||||||
for(let toRemove of object.requiredBy)
|
for(let toRemove of object.requiredBy)
|
||||||
deleteRecursively(toRemove)
|
deleteRecursively(toRemove)
|
||||||
if(Modules.Objects.currentObjectsByName[object.name] != undefined) {
|
if(Modules.Objects.currentObjectsByName[object.name] !== undefined) {
|
||||||
// Object still exists
|
// Object still exists
|
||||||
// Temporary fix for objects require not being propertly updated.
|
// Temporary fix for objects require not being propertly updated.
|
||||||
object.requiredBy = []
|
object.requiredBy = []
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
module eu.ad5001.LogarithmPlotter.Popup
|
module eu.ad5001.LogarithmPlotter.Popup
|
||||||
|
|
||||||
BaseDialog 1.0 BaseDialog.qml
|
|
||||||
About 1.0 About.qml
|
|
||||||
Alert 1.0 Alert.qml
|
Alert 1.0 Alert.qml
|
||||||
|
About 1.0 About.qml
|
||||||
|
BaseDialog 1.0 BaseDialog.qml
|
||||||
|
Changelog 1.0 Changelog.qml
|
||||||
FileDialog 1.0 FileDialog.qml
|
FileDialog 1.0 FileDialog.qml
|
||||||
GreetScreen 1.0 GreetScreen.qml
|
GreetScreen 1.0 GreetScreen.qml
|
||||||
Changelog 1.0 Changelog.qml
|
|
||||||
ThanksTo 1.0 ThanksTo.qml
|
|
||||||
InsertCharacter 1.0 InsertCharacter.qml
|
InsertCharacter 1.0 InsertCharacter.qml
|
||||||
Preferences 1.0 Preferences.qml
|
Preferences 1.0 Preferences.qml
|
||||||
|
ThanksTo 1.0 ThanksTo.qml
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
module eu.ad5001.LogarithmPlotter.Setting
|
module eu.ad5001.LogarithmPlotter.Setting
|
||||||
|
|
||||||
|
AutocompletionCategory 1.0 AutocompletionCategory.qml
|
||||||
ComboBoxSetting 1.0 ComboBoxSetting.qml
|
ComboBoxSetting 1.0 ComboBoxSetting.qml
|
||||||
|
ExpressionEditor 1.0 ExpressionEditor.qml
|
||||||
Icon 1.0 Icon.qml
|
Icon 1.0 Icon.qml
|
||||||
ListSetting 1.0 ListSetting.qml
|
ListSetting 1.0 ListSetting.qml
|
||||||
TextSetting 1.0 TextSetting.qml
|
TextSetting 1.0 TextSetting.qml
|
||||||
ExpressionEditor 1.0 ExpressionEditor.qml
|
|
||||||
AutocompletionCategory 1.0 AutocompletionCategory.qml
|
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
module eu.ad5001.LogarithmPlotter
|
module eu.ad5001.LogarithmPlotter
|
||||||
|
|
||||||
|
AppMenuBar 1.0 AppMenuBar.qml
|
||||||
|
LogGraphCanvas 1.0 LogGraphCanvas.qml
|
||||||
|
PickLocationOverlay 1.0 PickLocationOverlay.qml
|
||||||
Settings 1.0 Settings.qml
|
Settings 1.0 Settings.qml
|
||||||
Alert 1.0 Alert.qml
|
ViewPositionChangeOverlay 1.0 ViewPositionChangeOverlay.qml
|
Loading…
Reference in a new issue