Fix style sheet to remove borders from QStatusBar items.

master
Torsten Paul 2014-12-25 17:57:13 +01:00
parent 40602c99bc
commit fd4fe0816a
1 changed files with 1 additions and 1 deletions

View File

@ -631,7 +631,7 @@ int gui(vector<string> &inputFiles, const fs::path &original_path, int argc, cha
#endif
QApplication app(argc, argv, true); //useGUI);
// remove ugly frames in the QStatusBar when using additional widgets
app.setStyleSheet("QStatusBar::item { border: 0px solid black }; ");
app.setStyleSheet("QStatusBar::item { border: 0px solid black; }");
#ifdef Q_OS_MAC
app.installEventFilter(new EventFilter(&app));