diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-09 15:31:34 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-09 15:32:12 +0200 |
| commit | 97fd5d9ba445dbac0deaef763dce1382a88211d9 (patch) | |
| tree | 90cf926be783f67a744f47c11bb7866b88e965f0 /alf/alflayout.cpp | |
| parent | 77f3c00f226266a92587fce97f5b9bad38ab9fe2 (diff) | |
widget factory: table-based pane registry, allow adding tabs via menu
Diffstat (limited to 'alf/alflayout.cpp')
| -rw-r--r-- | alf/alflayout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alf/alflayout.cpp b/alf/alflayout.cpp index 8035e74..0fa3473 100644 --- a/alf/alflayout.cpp +++ b/alf/alflayout.cpp @@ -571,9 +571,9 @@ ALF_Layout_Invalidate(ALFLayout *layout, HWND window) HWND parent = GetParent(window); if (parent) { ALF_InvalidateLayout(parent); - } else { - PostMessage(window, ALF_WM_VALIDATELAYOUT, 0, 0); } + + PostMessage(window, ALF_WM_VALIDATELAYOUT, 0, 0); } |
