progresswindow: fix position of progressbars

Origin commit data
------------------
Branch: ni/coolstream
Commit: f4ccaa975b
Author: vanhofen <vanhofen@gmx.de>
Date: 2014-11-17 (Mon, 17 Nov 2014)

Origin message was:
------------------
- progresswindow: fix position of progressbars

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2014-11-17 15:53:08 +01:00
parent bb4aaeae7d
commit 1c7a3adf56

View File

@@ -58,7 +58,7 @@ void CProgressWindow::Init()
status_txt->setDimensionsAll(x_item, y_item, w_item, h_txt);
status_txt->setColorBody(col_body);
addWindowItem(status_txt);
y_item += h_txt;
y_item += h_txt + 10;
//create local_bar object
local_bar = new CProgressBar();
@@ -80,7 +80,7 @@ void CProgressWindow::Init()
addWindowItem(global_bar);
y_item += 2*h_pbar;
height = y_item + ccw_head->getHeight() + 10;
height = y_item + ccw_head->getHeight();
setCenterPos();
}