diff options
Diffstat (limited to 'components/MenuBar.qml')
| -rw-r--r-- | components/MenuBar.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/MenuBar.qml b/components/MenuBar.qml index e605f01e..6a60bb35 100644 --- a/components/MenuBar.qml +++ b/components/MenuBar.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -27,7 +27,7 @@ // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import Qt.labs.platform 1.0 as PlatformLabs -import "." as MoneroComponents +import "." as MonzeroComponents PlatformLabs.MenuBar { PlatformLabs.Menu { @@ -41,9 +41,9 @@ PlatformLabs.MenuBar { PlatformLabs.Menu { title: qsTr("View") PlatformLabs.MenuItem { - text: MoneroComponents.Style.blackTheme ? qsTr("Light Theme") : qsTr("Dark Theme") + text: MonzeroComponents.Style.blackTheme ? qsTr("Light Theme") : qsTr("Dark Theme") onTriggered: { - MoneroComponents.Style.blackTheme = !MoneroComponents.Style.blackTheme; + MonzeroComponents.Style.blackTheme = !MonzeroComponents.Style.blackTheme; } } PlatformLabs.MenuItem { |
