Browse Source

- Fixed preview when path contain spaces

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
f1aa1f993d
  1. 2
      src/GUI.cpp

2
src/GUI.cpp

@ -439,7 +439,7 @@ void GUI::on_actionExit_triggered() { @@ -439,7 +439,7 @@ void GUI::on_actionExit_triggered() {
}
void GUI::previewFile(QString filePath) {
QDesktopServices::openUrl(filePath);
QDesktopServices::openUrl(QString("file://")+filePath);
}
unsigned int GUI::getCurrentTabIndex() const{

Loading…
Cancel
Save