Skip to content

Commit

Permalink
fixup remove FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
CendioOssman committed Dec 14, 2021
1 parent c2b852a commit 57a10d7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion vncviewer/DesktopWindow.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,6 @@ int DesktopWindow::handle(int event)
case FL_DRAG:
case FL_MOVE:
// We don't get FL_LEAVE with a grabbed pointer, so check manually
// FIXME: Doesn't seem to work with window caption?
if (mouseGrabbed) {
if ((Fl::event_x() < 0) || (Fl::event_x() >= w()) ||
(Fl::event_y() < 0) || (Fl::event_y() >= h())) {
Expand Down
2 changes: 0 additions & 2 deletions vncviewer/Viewport.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,6 @@ void Viewport::handleKeyPress(int systemKeyCode,
if (!hotKeyBypass) {
HotKeyHandler::KeyAction action;

// FIXME: Detection broken on macOS after Cmd+Tab
action = hotKeyHandler.handleKeyPress(systemKeyCode, keySym);

if (action == HotKeyHandler::KeyIgnore) {
Expand Down Expand Up @@ -699,7 +698,6 @@ void Viewport::handleKeyPress(int systemKeyCode,
"with the server:\n\n%s"), e.str());
}

// FIXME: We get weird keysyms on macOS
switch (keySym) {
case XK_G:
case XK_g:
Expand Down

0 comments on commit 57a10d7

Please sign in to comment.