From 7fb2709629c483644c851a7417cc16daeef89f3c Mon Sep 17 00:00:00 2001 From: Et0h Date: Thu, 9 Oct 2014 19:22:16 +0100 Subject: [PATCH] Use exit menu label --- syncplay/ui/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/ui/gui.py b/syncplay/ui/gui.py index 4f8c32b..134841a 100644 --- a/syncplay/ui/gui.py +++ b/syncplay/ui/gui.py @@ -383,7 +383,7 @@ class MainWindow(QtGui.QMainWindow): window.fileMenu = QtGui.QMenu(getMessage("file-menu-label"), self) window.openAction = window.fileMenu.addAction(QtGui.QIcon(self.resourcespath + 'folder_explore.png'), getMessage("openmedia-menu-label")) window.openAction.triggered.connect(self.browseMediapath) - window.exitAction = window.fileMenu.addAction(QtGui.QIcon(self.resourcespath + 'cross.png'), getMessage("file-menu-label")) + window.exitAction = window.fileMenu.addAction(QtGui.QIcon(self.resourcespath + 'cross.png'), getMessage("exit-menu-label")) window.exitAction.triggered.connect(self.exitSyncplay) window.menuBar.addMenu(window.fileMenu)