[settings] Fixed initial selection of orientation combo box
This commit is contained in:
parent
b31da67dd3
commit
8a247fb7e2
1 changed files with 17 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2015-2018 Jolla Ltd.
|
Copyright (C) 2015-2020 Jolla Ltd.
|
||||||
Copyright (C) 2015-2018 Slava Monich <slava.monich@jolla.com>
|
Copyright (C) 2015-2020 Slava Monich <slava.monich@jolla.com>
|
||||||
|
|
||||||
You may use this file under the terms of BSD license as follows:
|
You may use this file under the terms of BSD license as follows:
|
||||||
|
|
||||||
|
@ -8,14 +8,15 @@
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
are met:
|
are met:
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright
|
1. Redistributions of source code must retain the above copyright
|
||||||
notice, this list of conditions and the following disclaimer.
|
notice, this list of conditions and the following disclaimer.
|
||||||
* Redistributions in binary form must reproduce the above copyright
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
notice, this list of conditions and the following disclaimer in the
|
notice, this list of conditions and the following disclaimer
|
||||||
documentation and/or other materials provided with the distribution.
|
in the documentation and/or other materials provided with the
|
||||||
* Neither the name of Jolla Ltd nor the names of its contributors may
|
distribution.
|
||||||
be used to endorse or promote products derived from this software
|
3. Neither the names of the copyright holders nor the names of its
|
||||||
without specific prior written permission.
|
contributors may be used to endorse or promote products derived
|
||||||
|
from this software without specific prior written permission.
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
@ -121,22 +122,25 @@ Page {
|
||||||
id: orientationMenu
|
id: orientationMenu
|
||||||
readonly property int defaultIndex: 0
|
readonly property int defaultIndex: 0
|
||||||
MenuItem {
|
MenuItem {
|
||||||
|
readonly property int value: 0
|
||||||
//: Combo box value for dynamic orientation
|
//: Combo box value for dynamic orientation
|
||||||
//% "Dynamic"
|
//% "Dynamic"
|
||||||
text: qsTrId("harbour-books-settings-page-orientation-dynamic")
|
text: qsTrId("harbour-books-settings-page-orientation-dynamic")
|
||||||
onClicked: orientation.value = 0
|
onClicked: orientation.value = value
|
||||||
}
|
}
|
||||||
MenuItem {
|
MenuItem {
|
||||||
|
readonly property int value: 1
|
||||||
//: Combo box value for portrait orientation
|
//: Combo box value for portrait orientation
|
||||||
//% "Portrait"
|
//% "Portrait"
|
||||||
text: qsTrId("harbour-books-settings-page-orientation-portrait")
|
text: qsTrId("harbour-books-settings-page-orientation-portrait")
|
||||||
onClicked: orientation.value = 1
|
onClicked: orientation.value = value
|
||||||
}
|
}
|
||||||
MenuItem {
|
MenuItem {
|
||||||
|
readonly property int value: 2
|
||||||
//: Combo box value for landscape orientation
|
//: Combo box value for landscape orientation
|
||||||
//% "Landscape"
|
//% "Landscape"
|
||||||
text: qsTrId("harbour-books-settings-page-orientation-landscape")
|
text: qsTrId("harbour-books-settings-page-orientation-landscape")
|
||||||
onClicked: orientation.value = 2
|
onClicked: orientation.value = value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Component.onCompleted: orientation.updateControls()
|
Component.onCompleted: orientation.updateControls()
|
||||||
|
|
Loading…
Reference in a new issue