forked from openlp/openlp
If the save location is unavailable, the "Save As" dialog is used.
bzr-revno: 1865 Fixes: https://launchpad.net/bugs/905040
This commit is contained in:
commit
11d63c6607
@ -595,7 +595,10 @@ class ServiceManager(QtGui.QWidget):
|
|||||||
self.mainwindow.finishedProgressBar()
|
self.mainwindow.finishedProgressBar()
|
||||||
Receiver.send_message(u'cursor_normal')
|
Receiver.send_message(u'cursor_normal')
|
||||||
if success:
|
if success:
|
||||||
shutil.copy(temp_file_name, path_file_name)
|
try:
|
||||||
|
shutil.copy(temp_file_name, path_file_name)
|
||||||
|
except:
|
||||||
|
return self.saveFileAs()
|
||||||
self.mainwindow.addRecentFile(path_file_name)
|
self.mainwindow.addRecentFile(path_file_name)
|
||||||
self.setModified(False)
|
self.setModified(False)
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user