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 @@ -28,7 +28,10 @@ ColumnLayout {
28
28
actionItem: ValueInput {
29
29
parentState: pruneTargetSetting .state
30
30
description: optionsModel .pruneSizeGB
31
- onEditingFinished: optionsModel .pruneSizeGB = parseInt (text)
31
+ onEditingFinished: {
32
+ optionsModel .pruneSizeGB = parseInt (text)
33
+ pruneTargetSetting .forceActiveFocus ()
34
+ }
32
35
}
33
36
onClicked: loadedItem .forceActiveFocus ()
34
37
}
You can’t perform that action at this time.
0 commit comments