From 9462814423f39ceb5e36e88349c75fa32514dee6 Mon Sep 17 00:00:00 2001 From: Gordon Norman Squash Date: Tue, 10 Sep 2024 16:47:03 -0400 Subject: Update README Added GtkNotebook scrolling feature to To-Do list; added screenshot depicting the file chooser typeahead search feature. --- README.md | 13 +++++++++++++ screenshots/file-chooser-typeahead.png | Bin 0 -> 63931 bytes 2 files changed, 13 insertions(+) create mode 100644 screenshots/file-chooser-typeahead.png diff --git a/README.md b/README.md index 6f48a17..076f15e 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,8 @@ amount of documentation about each option. the recursive search that GTK 3 normally performs. Press Alt-S to launch the recursive search instead. + + * The sizes of some widgets (mostly buttons) in the built-in GTK themes Adwaita and HighContrast have been reduced. @@ -120,6 +122,17 @@ here. ## To-Do +* When the user scrolls over the tab bar of a GtkNotebook, switch the current + tab. + + My experience with the patch from `gtk3-classic` is that some applications + (e.g. [Pluma](https://github.com/mate-desktop/pluma) implement this scrolling + behaviour themselves, and thus with the `gtk3-classic` patch applied, + scrolling will move over by *two* tab positions at a time. My implementation + will record the current tab before passing control over to the default + handler of scroll events; only if the current tab hasn't changed after the + default handler runs, will the plugin switch tabs. + * At least convert headerbars from a virtual titlebar for the window into a box at the top of the window content area. diff --git a/screenshots/file-chooser-typeahead.png b/screenshots/file-chooser-typeahead.png new file mode 100644 index 0000000..50b5d0a Binary files /dev/null and b/screenshots/file-chooser-typeahead.png differ -- cgit