From 6ddb9e49987d02411152e1c94597c38d75bae909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Mon, 23 Jun 2014 18:39:23 +0200 Subject: [PATCH] fixed toolbar style in MacOSX (unified toolbar Qt5) --- YACReader/main_window_viewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReader/main_window_viewer.cpp b/YACReader/main_window_viewer.cpp index 18f65a03..4b58bf38 100644 --- a/YACReader/main_window_viewer.cpp +++ b/YACReader/main_window_viewer.cpp @@ -419,11 +419,11 @@ void MainWindowViewer::createToolBars() { comicToolBar = addToolBar(tr("&File")); - comicToolBar->setStyleSheet("QToolBar{border:none;}"); #ifdef Q_OS_MAC comicToolBar->setIconSize(QSize(16,16)); #else comicToolBar->setIconSize(QSize(18,18)); + comicToolBar->setStyleSheet("QToolBar{border:none;}"); #endif QToolButton * tb = new QToolButton();