Fix opening the data folder (KDE thought the old way was an SMB share)

This commit is contained in:
Raoul Snyman 2017-03-16 21:27:16 -07:00
parent f759bda9e7
commit dc37dad251
1 changed files with 1 additions and 1 deletions

View File

@ -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):
"""