File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,10 @@ ColumnLayout {
29
29
actionItem: ValueInput {
30
30
parentState: dbcacheSetting .state
31
31
description: optionsModel .dbcacheSizeMiB
32
- onEditingFinished: optionsModel .dbcacheSizeMiB = parseInt (text)
32
+ onEditingFinished: {
33
+ optionsModel .dbcacheSizeMiB = parseInt (text)
34
+ dbcacheSetting .forceActiveFocus ()
35
+ }
33
36
}
34
37
onClicked: loadedItem .forceActiveFocus ()
35
38
}
@@ -40,7 +43,10 @@ ColumnLayout {
40
43
actionItem: ValueInput {
41
44
parentState: parSetting .state
42
45
description: optionsModel .scriptThreads
43
- onEditingFinished: optionsModel .scriptThreads = parseInt (text)
46
+ onEditingFinished: {
47
+ optionsModel .scriptThreads = parseInt (text)
48
+ parSetting .forceActiveFocus ()
49
+ }
44
50
}
45
51
onClicked: loadedItem .forceActiveFocus ()
46
52
}
Original file line number Diff line number Diff line change @@ -35,7 +35,10 @@ ColumnLayout {
35
35
actionItem: ValueInput {
36
36
parentState: pruneTargetSetting .state
37
37
description: optionsModel .pruneSizeGB
38
- onEditingFinished: optionsModel .pruneSizeGB = parseInt (text)
38
+ onEditingFinished: {
39
+ optionsModel .pruneSizeGB = parseInt (text)
40
+ pruneTargetSetting .forceActiveFocus ()
41
+ }
39
42
}
40
43
onClicked: loadedItem .forceActiveFocus ()
41
44
}
You can’t perform that action at this time.
0 commit comments