forked from openlp/openlp
Do not reload songs when wizard not run
This commit is contained in:
parent
0f113631ac
commit
c43af5a816
@ -157,7 +157,6 @@ class SongMediaItem(MediaManagerItem):
|
|||||||
(5, u':/slides/slide_theme.png',
|
(5, u':/slides/slide_theme.png',
|
||||||
translate('SongsPlugin.MediaItem', 'Themes'))
|
translate('SongsPlugin.MediaItem', 'Themes'))
|
||||||
])
|
])
|
||||||
|
|
||||||
self.configUpdated()
|
self.configUpdated()
|
||||||
|
|
||||||
def onSearchTextButtonClick(self):
|
def onSearchTextButtonClick(self):
|
||||||
@ -269,7 +268,7 @@ class SongMediaItem(MediaManagerItem):
|
|||||||
def onImportClick(self):
|
def onImportClick(self):
|
||||||
if not hasattr(self, u'import_wizard'):
|
if not hasattr(self, u'import_wizard'):
|
||||||
self.import_wizard = SongImportForm(self, self.parent)
|
self.import_wizard = SongImportForm(self, self.parent)
|
||||||
self.import_wizard.exec_()
|
if self.import_wizard.exec_() == QtGui.QDialog.Accepted:
|
||||||
Receiver.send_message(u'songs_load_list')
|
Receiver.send_message(u'songs_load_list')
|
||||||
|
|
||||||
def onNewClick(self):
|
def onNewClick(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user