Skip to content

Commit

Permalink
Fix bug #552: Can't open files with spaces in name
Browse files Browse the repository at this point in the history
  • Loading branch information
Germar committed Mar 2, 2016
1 parent 49960ed commit 9538e3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Back In Time

Version 1.1.13
* Fix bug: Can't open files with spaces in name (https://github.com/bit-team/backintime/issues/552)
* Fix bug: BIT-root won't start from .desktop file (https://github.com/bit-team/backintime/issues/549)
* Fix bug: Keyring doesn't work with KDE Plasma5 (https://github.com/bit-team/backintime/issues/545)
* Fix bug: Qt4 built-in phrases where not translated (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=816197)
Expand Down
2 changes: 1 addition & 1 deletion qt4/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ def open_path(self, rel_path):
self.path_history.append(rel_path)
self.update_files_view( 0 )
else:
self.run = QDesktopServices.openUrl(QUrl(full_path ))
self.run = QDesktopServices.openUrl(QUrl('file://' + full_path))

@pyqtSlot(int)
def update_files_view( self, changed_from, selected_file = None, show_snapshots = False ): #0 - files view change directory, 1 - files view, 2 - time_line, 3 - places
Expand Down

0 comments on commit 9538e3f

Please sign in to comment.