From fd4fe0816a11dabb164bd239bc576c4378054fcf Mon Sep 17 00:00:00 2001 From: Torsten Paul Date: Thu, 25 Dec 2014 17:57:13 +0100 Subject: [PATCH] Fix style sheet to remove borders from QStatusBar items. --- src/openscad.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openscad.cc b/src/openscad.cc index 034eced5..1e8f56c1 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -631,7 +631,7 @@ int gui(vector &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));