Browse Source

Add tab navigation for numeric input controls.

Neal Wilson 11 years ago
parent
commit
adeb8f0c90
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      qml/BrewPlot/main.qml

+ 4
- 0
qml/BrewPlot/main.qml View File

40
                         decimals: 2
40
                         decimals: 2
41
                         notation: DoubleValidator.StandardNotation
41
                         notation: DoubleValidator.StandardNotation
42
                     }
42
                     }
43
+                    KeyNavigation.tab: brewedMass
43
 
44
 
44
                     Line {
45
                     Line {
45
                         x1: -3; y1: groundMass.height
46
                         x1: -3; y1: groundMass.height
64
                         decimals: 2
65
                         decimals: 2
65
                         notation: DoubleValidator.StandardNotation
66
                         notation: DoubleValidator.StandardNotation
66
                     }
67
                     }
68
+                    KeyNavigation.backtab: groundMass
69
+                    KeyNavigation.tab: ptds
67
 
70
 
68
                     Line {
71
                     Line {
69
                         x1: -3; y1: brewedMass.height
72
                         x1: -3; y1: brewedMass.height
89
                         decimals: 2
92
                         decimals: 2
90
                         notation: DoubleValidator.StandardNotation
93
                         notation: DoubleValidator.StandardNotation
91
                     }
94
                     }
95
+                    KeyNavigation.backtab: brewedMass
92
 
96
 
93
                     Line {
97
                     Line {
94
                         x1: -3; y1: ptds.height
98
                         x1: -3; y1: ptds.height

Loading…
Cancel
Save