From bbd9764f9cbca50688da440699ad965b23fe6132 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 10 Jan 2011 17:55:27 +0000 Subject: [PATCH] Reduced top toolbar spacing --- Changelog | 2 +- src/mainwindow.cpp | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Changelog b/Changelog index d2549a55a..bbff926c8 100644 --- a/Changelog +++ b/Changelog @@ -2,7 +2,7 @@ - BUGFIX: Really disable torrent addition dialog by default - BUGFIX: Fix some missing icons in the Web UI - BUGFIX: Fix magnet torrent name update problem - - COSMETIC: Use 24px size for toolbar icons + - COSMETIC: Use 24px size for toolbar icons and reduce spacing - COSMETIC: Move transfer list filter on the right side of the toolbar * Sun Jan 9 2011 - Christophe Dumez - v2.6.0 diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 31fef9d5a..3ce7ff62c 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -84,7 +84,7 @@ void qt_mac_set_dock_menu(QMenu *menu); using namespace libtorrent; #define TIME_TRAY_BALLOON 5000 -#define TOOLBAR_SPACING 10 +#define TOOLBAR_SPACING 0 /***************************************************** * * @@ -175,8 +175,7 @@ MainWindow::MainWindow(QWidget *parent, QStringList torrentCmdLine) : QMainWindo // Name filter search_filter = new LineEdit(); connect(search_filter, SIGNAL(textChanged(QString)), transferList, SLOT(applyNameFilter(QString))); - QAction *searchSeparatorAct = toolBar->insertSeparator(actionLock_qBittorrent); - QAction *searchFilterAct = toolBar->insertWidget(searchSeparatorAct, search_filter); + QAction *searchFilterAct = toolBar->insertWidget(actionLock_qBittorrent, search_filter); search_filter->setFixedWidth(200); QWidget *spacer = new QWidget(this); spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);