diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-26 19:38:40 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-26 19:38:40 +0800 |
commit | b2dc19155f8378f24cf9cc3c31e844b9daf59d84 (patch) | |
tree | 92fc1d4cb292acfc7c10d7715e7b69059c007749 | |
parent | 7a5b279459d5a52242b88f2e8ffce62c2c30babb (diff) | |
download | go-tangerine-b2dc19155f8378f24cf9cc3c31e844b9daf59d84.tar go-tangerine-b2dc19155f8378f24cf9cc3c31e844b9daf59d84.tar.gz go-tangerine-b2dc19155f8378f24cf9cc3c31e844b9daf59d84.tar.bz2 go-tangerine-b2dc19155f8378f24cf9cc3c31e844b9daf59d84.tar.lz go-tangerine-b2dc19155f8378f24cf9cc3c31e844b9daf59d84.tar.xz go-tangerine-b2dc19155f8378f24cf9cc3c31e844b9daf59d84.tar.zst go-tangerine-b2dc19155f8378f24cf9cc3c31e844b9daf59d84.zip |
Renamed wallet to main
-rw-r--r-- | mist/assets/qml/main.qml (renamed from mist/assets/qml/wallet.qml) | 0 | ||||
-rw-r--r-- | mist/gui.go | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/mist/assets/qml/wallet.qml b/mist/assets/qml/main.qml index 885d09116..885d09116 100644 --- a/mist/assets/qml/wallet.qml +++ b/mist/assets/qml/main.qml diff --git a/mist/gui.go b/mist/gui.go index 299c053d2..45ef66624 100644 --- a/mist/gui.go +++ b/mist/gui.go @@ -172,7 +172,7 @@ func (gui *Gui) Stop() { } func (gui *Gui) showWallet(context *qml.Context) (*qml.Window, error) { - component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/wallet.qml")) + component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/main.qml")) if err != nil { return nil, err } |