diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.cpp b/src/window.cpp index df7c5e50b..02645f29c 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -770,7 +770,7 @@ void Window::InitializeData(WindowClass cls, int window_number, uint32 desc_flag { /* Set up window properties; some of them are needed to set up smallest size below */ this->window_class = cls; - this->flags4 = WF_WHITE_BORDER_MASK; // just opened windows have a white border + this->flags4 |= WF_WHITE_BORDER_MASK; // just opened windows have a white border this->owner = INVALID_OWNER; this->nested_focus = NULL; this->window_number = window_number; |