Skip to content

Commit

Permalink
Linux: Fix incomplete selection check if X11 support is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Feb 21, 2025
1 parent 11a0d5c commit 67c8071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/x11/x11platformclipboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ bool isSelectionIncomplete()

return event.state & (Button1Mask | ShiftMask);
#else
return true;
return false;
#endif
}

Expand Down

0 comments on commit 67c8071

Please sign in to comment.