mirror of
https://github.com/lubosz/overte.git
synced 2025-04-15 18:48:32 +02:00
Tweak vertical spacing
This commit is contained in:
parent
4813f4d042
commit
868a3a9219
3 changed files with 7 additions and 5 deletions
|
@ -34,7 +34,7 @@ Preference {
|
|||
left: parent.left
|
||||
right: parent.right
|
||||
}
|
||||
height: isFirstCheckBox ? hifi.dimensions.controlInterlineHeight : 0
|
||||
height: isFirstCheckBox && !preference.indented ? 16 : 2
|
||||
}
|
||||
|
||||
CheckBox {
|
||||
|
|
|
@ -138,11 +138,12 @@ Preference {
|
|||
break;
|
||||
|
||||
case Preference.PrimaryHand:
|
||||
checkBoxCount++;
|
||||
checkBoxCount = 0;
|
||||
builder = primaryHandBuilder;
|
||||
break;
|
||||
|
||||
case Preference.RadioButtons:
|
||||
checkBoxCount++;
|
||||
checkBoxCount = 0;
|
||||
builder = radioButtonsBuilder;
|
||||
break;
|
||||
};
|
||||
|
|
|
@ -153,11 +153,12 @@ Preference {
|
|||
break;
|
||||
|
||||
case Preference.PrimaryHand:
|
||||
checkBoxCount++;
|
||||
checkBoxCount = 0;
|
||||
builder = primaryHandBuilder;
|
||||
break;
|
||||
|
||||
case Preference.RadioButtons:
|
||||
checkBoxCount++;
|
||||
checkBoxCount = 0;
|
||||
builder = radioButtonsBuilder;
|
||||
break;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue