forked from openlp/openlp
Fix opening the data folder (KDE thought the old way was an SMB share)
This commit is contained in:
parent
f759bda9e7
commit
dc37dad251
@ -796,7 +796,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow, RegistryProperties):
|
||||
Open data folder
|
||||
"""
|
||||
path = AppLocation.get_data_path()
|
||||
QtGui.QDesktopServices.openUrl(QtCore.QUrl("file:///" + path))
|
||||
QtGui.QDesktopServices.openUrl(QtCore.QUrl.fromLocalFile(path))
|
||||
|
||||
def on_update_theme_images(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user