From e2a187f8928443b876f400118f48b1b46bbc88cb Mon Sep 17 00:00:00 2001 From: xiphon Date: Sat, 23 Nov 2019 22:03:28 +0000 Subject: [PATCH] AppWindow: append wallet name to window title --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index b118c09b..23d87f43 100644 --- a/main.qml +++ b/main.qml @@ -47,7 +47,7 @@ import "js/Windows.js" as Windows ApplicationWindow { id: appWindow - title: "Monero" + title: "Monero" + (walletName ? " - " + walletName : "") property var currentItem property bool hideBalanceForced: false