(svn r22932) -Fix [FS#4766]: disable the white border on window creation for several windows (based on patch by monoid)

This commit is contained in:
yexo
2011-09-15 13:26:27 +00:00
parent 6168dc04ad
commit 7196157d2d
6 changed files with 6 additions and 4 deletions

View File

@@ -89,11 +89,11 @@ struct StatusBarWindow : Window {
StatusBarWindow(const WindowDesc *desc) : Window()
{
CLRBITS(this->flags4, WF_WHITE_BORDER_MASK);
this->ticker_scroll = TICKER_STOP;
this->reminder_timeout = REMINDER_STOP;
this->InitNested(desc);
CLRBITS(this->flags4, WF_WHITE_BORDER_MASK);
PositionStatusbar(this);
}