fixed problem with bitmap buttons in Linux app when using GTK-3
attempt to solve some cosmetic issues on Linux after switching to GTK-3
updated Build.html to show how to build Linux Golly with GTK-3
Hmm, Google has just told me that GTK2 doesn't support Wayland so forget my suggestion to try it! I'll have to figure out how to move Golly to GTK3.
You're building Golly with GTK3? Our build docs say to use GTK2 so I'm wondering if that explains the problems with the Prefs dialog and the Help window. Are you able to rebuild wxGTK (and thus Golly) with GTK2? You'd probably need to install the GTK2 libs via "sudo apt-get install libgtk2.0-dev" or however wayland does it, and then run wxGTK's "../configure --with-gtk=2 etc...". I'd like to move to GTK3 but when I've tried that on my Mint 20 system I end up with a Golly that won't even start up...
There are quite a few modal dialogs in Golly: Set Generation, Set Base Step, Set Rule in the Control menu, and Name Layer, Set Layer Colors in the Layer menu. Do you see any problems with those dialogs?
Added support for patterns like {abcde??} which finds all words with 1 to 7 letters that can be made using the given letters and up to 2 arbitrary letters. Very handy for Scrabble players.
Hi! Much thanks for making those GTK improvements to Golly. I'm happy to include the fix for the dark-theme colors but I have a question about the changes to the Prefs dialog. In wxprefs.cpp I see that you have deleted most of the calls to SetFocus and SetSelection(ALL_TEXT). Were those calls causing problems with GTK? Or is it considered non standard on Linux to automatically select editable text in a modal dialog?