diff --git a/Fltk/graphicWindow.cpp b/Fltk/graphicWindow.cpp index b27dbb6915f78101283444b8df151d859ab064a8..8196390d06facd5c482704ee6b8bda96c16705e1 100644 --- a/Fltk/graphicWindow.cpp +++ b/Fltk/graphicWindow.cpp @@ -2881,8 +2881,9 @@ graphicWindow::graphicWindow(bool main, int numTiles, bool detachTree) browser->type(FL_MULTI_BROWSER); browser->callback(message_browser_cb, this); browser->scrollbar_size(std::max(10, FL_NORMAL_SIZE - 2)); // thinner scrollbars -#if defined(__APPLE__) - // horizontal scrollbar is buggy on Mac when tiles are resized +#if 1 + // scrollbars are buggy when tiles are resized; hiding the horizontal one + // somewhat alleviates the problem browser->has_scrollbar(Fl_Browser_::VERTICAL); #endif }