summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-05-10 16:56:25 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-05-10 16:56:25 +0200
commita638d90e0090fc775992fc3f2e2c29e635ec9fd7 (patch)
treed7ecb847242d5b7a9a124b64759d71b15c81dab2
parentb6e0122926b9bae1b9400ba3bf01e5b7d977b758 (diff)
Add missing closing parenthesis.
-rw-r--r--src/drivers/Wayland/Fl_Wayland_Window_Driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/Wayland/Fl_Wayland_Window_Driver.cxx b/src/drivers/Wayland/Fl_Wayland_Window_Driver.cxx
index cabf831f7..6c8631b63 100644
--- a/src/drivers/Wayland/Fl_Wayland_Window_Driver.cxx
+++ b/src/drivers/Wayland/Fl_Wayland_Window_Driver.cxx
@@ -1305,7 +1305,7 @@ void Fl_Wayland_Window_Driver::use_border() {
if (!shown() || pWindow->parent()) return;
struct libdecor_frame *frame = fl_xid(pWindow)->frame;
if (frame && Fl_Wayland_Screen_Driver::compositor != Fl_Wayland_Screen_Driver::KDE &&
- && fl_xid(pWindow)->xdg_surface) {
+ && fl_xid(pWindow)->xdg_surface)) {
libdecor_frame_set_visibility(frame, pWindow->border());
pWindow->redraw();
} else {