mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
webview-fix
This commit is contained in:
parent
b7daf8c80b
commit
9c79e62004
1 changed files with 3 additions and 1 deletions
|
@ -40,7 +40,7 @@ Item {
|
|||
anchors.leftMargin: 8
|
||||
HiFiGlyphs {
|
||||
id: back;
|
||||
enabled: currentPage > 0
|
||||
enabled: currentPage >= 0
|
||||
text: hifi.glyphs.backward
|
||||
color: enabled ? hifistyles.colors.text : hifistyles.colors.disabledText
|
||||
size: 48
|
||||
|
@ -107,6 +107,8 @@ Item {
|
|||
function goBack() {
|
||||
if (currentPage > 0) {
|
||||
currentPage--;
|
||||
} else if (parentStackItem) {
|
||||
parentStackItem.pop();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue