aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildprogress.cpp
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@nokia.com>2009-06-04 15:17:08 +0200
committerJens Bache-Wiig <jens.bache-wiig@nokia.com>2009-06-04 15:19:57 +0200
commit6e8bc0cf58aa06c6e9f32b95398e4653512ec4e3 (patch)
tree6261d3d093d8fe9150e20b6fa5a770be5e565555 /src/plugins/projectexplorer/buildprogress.cpp
parentfda09bbc62ae14f6174f4b4f2da4374b3f70dfae (diff)
Fixes: Improved sidebar looks and layout
Details: -Centered all the text labels. -Added shadow on title text. -Made progressbar go all the way and placed the button on top. -Added some spacing between warning and error icons. -Improved cosmetics on progress bar itself.
Diffstat (limited to 'src/plugins/projectexplorer/buildprogress.cpp')
-rw-r--r--src/plugins/projectexplorer/buildprogress.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/buildprogress.cpp b/src/plugins/projectexplorer/buildprogress.cpp
index 0d696dab8c..4969a12f10 100644
--- a/src/plugins/projectexplorer/buildprogress.cpp
+++ b/src/plugins/projectexplorer/buildprogress.cpp
@@ -46,8 +46,8 @@ BuildProgress::BuildProgress(TaskWindow *taskWindow)
m_taskWindow(taskWindow)
{
QVBoxLayout *layout = new QVBoxLayout;
- layout->setMargin(0);
- layout->setSpacing(0);
+ layout->setContentsMargins(8, 2, 0, 2);
+ layout->setSpacing(2);
setLayout(layout);
QHBoxLayout *errorLayout = new QHBoxLayout;
errorLayout->setSpacing(4);