Hugo Parente Lima
unread,Jun 15, 2012, 4:00:13 PM6/15/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to snowsh...@googlegroups.com
Reviewed-by: ?
---
src/mobile/qml/Main.qml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/mobile/qml/Main.qml b/src/mobile/qml/Main.qml
index 2a156b9..6fc152d 100644
--- a/src/mobile/qml/Main.qml
+++ b/src/mobile/qml/Main.qml
@@ -161,7 +161,11 @@ Rectangle {
// then to true on start up causing a cascade misbehaviour, the workaround
// is to set the state of the root element on Component.onCompleted.
// state: "favorites"
- Component.onCompleted: state = "favorites"
+ Component.onCompleted: {
+ state = "favorites";
+ if (!BookmarkModel.count)
+ urlInputPanel.showForNewTab();
+ }
states: [
State {
--
1.7.10.3