Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package breeze-gtk for openSUSE:Factory checked in at 2021-06-07 22:41:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/breeze-gtk (Old) and /work/SRC/openSUSE:Factory/.breeze-gtk.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "breeze-gtk" Mon Jun 7 22:41:55 2021 rev:98 rq:897466 version:5.22.0 Changes: -------- --- /work/SRC/openSUSE:Factory/breeze-gtk/breeze-gtk.changes 2021-05-06 22:52:09.710864671 +0200 +++ /work/SRC/openSUSE:Factory/.breeze-gtk.new.32437/breeze-gtk.changes 2021-06-07 22:42:00.052333185 +0200 @@ -1,0 +2,29 @@ +Thu Jun 3 13:06:12 UTC 2021 - Fabian Vogt <[email protected]> + +- Update to 5.22.0 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.22.0 +- No code changes since 5.21.90 + +------------------------------------------------------------------- +Thu May 13 18:15:28 UTC 2021 - Fabian Vogt <[email protected]> + +- Update to 5.21.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.21.90 +- Changes since 5.21.5: + * gtk3, gtk4: refactor arrow icon names into variables + * Use Breeze-style arrows everywhere + * Add support for libhandy v1 viewswitcher + * gtk3, gtk4: make comboboxes look more true to breeze qstyle + * gtk2: use the same colours as the Qt theme for scrollbars + * Adjust menu heights to properly match Breeze QStyle, second time (kde#433158) + * gtk3, gtk4: unscrew libhandy's height (kde#430081) + * Raise minimum CMake version to 3.16 + * Fix breakages caused by formatter run (kde#432245) + * Adjust menu heights to properly match Breeze QStyle (kde#431819) + * gtk4: remove margin on windows (kde#431930) + +------------------------------------------------------------------- Old: ---- breeze-gtk-5.21.5.tar.xz breeze-gtk-5.21.5.tar.xz.sig New: ---- breeze-gtk-5.22.0.tar.xz breeze-gtk-5.22.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ breeze-gtk.spec ++++++ --- /var/tmp/diff_new_pack.SCaH4f/_old 2021-06-07 22:42:00.808334461 +0200 +++ /var/tmp/diff_new_pack.SCaH4f/_new 2021-06-07 22:42:00.808334461 +0200 @@ -19,19 +19,19 @@ %define _name breeze Name: breeze-gtk -Version: 5.21.5 +Version: 5.22.0 Release: 0 Summary: GTK+ theme matching KDE's Breeze License: LGPL-2.1-only Group: System/GUI/KDE URL: https://projects.kde.org/breeze-gtk -Source: https://download.kde.org/stable/plasma/%{version}/breeze-gtk-%{version}.tar.xz +Source: breeze-gtk-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/stable/plasma/%{version}/breeze-gtk-%{version}.tar.xz.sig +Source1: breeze-gtk-%{version}.tar.xz.sig Source2: plasma.keyring %endif BuildRequires: breeze5-style -BuildRequires: cmake >= 2.8.12 +BuildRequires: cmake >= 3.16 BuildRequires: extra-cmake-modules BuildRequires: fdupes BuildRequires: kf5-filesystem ++++++ breeze-gtk-5.21.5.tar.xz -> breeze-gtk-5.22.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/.gitignore new/breeze-gtk-5.22.0/.gitignore --- old/breeze-gtk-5.21.5/.gitignore 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/.gitignore 2021-06-03 15:57:35.000000000 +0200 @@ -3,3 +3,8 @@ .clang-format CMakeLists.txt.user* /build*/ +/compile_commands.json +.clangd +.idea +/cmake-build* +.cache diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/CMakeLists.txt new/breeze-gtk-5.22.0/CMakeLists.txt --- old/breeze-gtk-5.21.5/CMakeLists.txt 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/CMakeLists.txt 2021-06-03 15:57:35.000000000 +0200 @@ -1,8 +1,8 @@ project(breeze-gtk) -set(PROJECT_VERSION "5.21.5") +set(PROJECT_VERSION "5.22.0") set(PROJECT_VERSION_MAJOR 5) -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.16) find_package(ECM 0.0.9 REQUIRED NO_MODULE) include(FeatureSummary) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/_functions.scss new/breeze-gtk-5.22.0/src/_functions.scss --- old/breeze-gtk-5.21.5/src/_functions.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/_functions.scss 2021-06-03 15:57:35.000000000 +0200 @@ -144,6 +144,11 @@ $success_color: $ViewForegroundPositive; $destructive_color: $error_color; +$arrow_down: 'go-down-symbolic'; +$arrow_left: 'go-previous-symbolic'; +$arrow_right: 'go-next-symbolic'; +$arrow_up: 'go-up-symbolic'; + $trough_color: gtkmix(gtk("@theme_bg_color"), gtk("@theme_fg_color"), 0.7); $trough_color_backdrop: gtkmix( gtk("@theme_unfocused_bg_color"), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk3/widgets/_button.scss new/breeze-gtk-5.22.0/src/gtk3/widgets/_button.scss --- old/breeze-gtk-5.21.5/src/gtk3/widgets/_button.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk3/widgets/_button.scss 2021-06-03 15:57:35.000000000 +0200 @@ -444,7 +444,7 @@ **************/ combobox { arrow { - -gtk-icon-source: -gtk-icontheme('go-down-symbolic'); + -gtk-icon-source: -gtk-icontheme($arrow_down); min-height: 16px; min-width: 16px; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk3/widgets/_headerbar.scss new/breeze-gtk-5.22.0/src/gtk3/widgets/_headerbar.scss --- old/breeze-gtk-5.21.5/src/gtk3/widgets/_headerbar.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk3/widgets/_headerbar.scss 2021-06-03 15:57:35.000000000 +0200 @@ -161,7 +161,7 @@ } .arrow { - -gtk-icon-source: -gtk-icontheme("go-down-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_down); -gtk-icon-shadow: none; } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk3/widgets/_libhandy.scss new/breeze-gtk-5.22.0/src/gtk3/widgets/_libhandy.scss --- old/breeze-gtk-5.21.5/src/gtk3/widgets/_libhandy.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk3/widgets/_libhandy.scss 2021-06-03 15:57:35.000000000 +0200 @@ -64,3 +64,97 @@ border-top: 3px solid transparent; border-bottom: 3px solid gtk("@theme_button_decoration_focus"); } +viewswitcher { + border-radius: 0; + margin: 0; + padding: 0; + background-color: transparent; + button { + border-radius: 0; + margin: 0; + padding: 0; + background-color: transparent; + border: 0; + box-shadow: none; + > stack { + color: gtk("@theme_button_foreground_normal"); + > box label.active { + font-weight: bold; + } + > box.narrow { + font-size: 0.75rem; padding-top: 7px; padding-bottom: 5px; + image, label { + padding-left: 8px; padding-right: 8px; + } + } + > box.wide { + padding: 8px 12px; + label:dir(ltr) { + padding-right: 7px; + } + label:dir(rtl) { + padding-left: 7px; + } + } + } + &:backdrop, + &:active, + &:active:focus, + &:checked:hover, + &:checked:focus:hover, + &:backdrop:checked:hover, + &:focus { + background-color: transparent; + } + &:hover, + &:focus:hover, + &:backdrop:hover, + &:backdrop:focus:hover { + background-color: gtk("@insensitive_borders"); + } + &:checked, + &:checked:backdrop, + label:backdrop viewswitcher > selection:checked { + border-top: 0; + border-left: 0; + border-right: 0; + background-color: transparent; + > stack { + border-bottom: 3px solid transparent; + border-top: 3px solid gtk("@theme_button_decoration_focus"); + } + } + &.needs-attention { + > stack > box label { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(gtk("@theme_button_decoration_focus")), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 0px, right 1px; + } + &:checked > stack > box label { + animation: needs_attention 150ms ease-out; + background-image: none; + } + } + } +} +headerbar viewswitcher button:checked { + > stack { + border-top: 3px solid transparent; + border-bottom: 3px solid gtk("@theme_button_decoration_focus"); + > box label { + font-weight: bold; + } + } + > stack:backdrop { + border-top: 3px solid transparent; + border-bottom: 3px solid gtk("@theme_button_decoration_focus"); + } +} +viewswitcherbar { + actionbar > revealer > box { + margin: 0; + padding: 0; + } +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk3/widgets/_menus.scss new/breeze-gtk-5.22.0/src/gtk3/widgets/_menus.scss --- old/breeze-gtk-5.21.5/src/gtk3/widgets/_menus.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk3/widgets/_menus.scss 2021-06-03 15:57:35.000000000 +0200 @@ -111,7 +111,7 @@ min-width: 16px; &:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_right); margin-left: 10px; } @@ -135,13 +135,13 @@ &.top { margin-top: -6px; border: none; - -gtk-icon-source: -gtk-icontheme("go-up-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_up); } &.bottom { margin-bottom: -6px; border: none; - -gtk-icon-source: -gtk-icontheme("go-down-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_down); } &:hover { @@ -264,11 +264,11 @@ } &.left { - -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_left); } &.right { - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_right); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk3/widgets/_misc.scss new/breeze-gtk-5.22.0/src/gtk3/widgets/_misc.scss --- old/breeze-gtk-5.21.5/src/gtk3/widgets/_misc.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk3/widgets/_misc.scss 2021-06-03 15:57:35.000000000 +0200 @@ -84,7 +84,7 @@ arrow { min-width: 16px; min-height: 16px; - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_right); &:dir(rtl) { -gtk-icon-source: -gtk-icontheme("go-next-rtl-symbolic"); } @@ -92,7 +92,7 @@ color: gtkshade(gtk("@theme_fg_color"), 1.3); } //only lightens the arrow &:checked { - -gtk-icon-source: -gtk-icontheme("go-down-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_down); } } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk3/widgets/_notebook.scss new/breeze-gtk-5.22.0/src/gtk3/widgets/_notebook.scss --- old/breeze-gtk-5.21.5/src/gtk3/widgets/_notebook.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk3/widgets/_notebook.scss 2021-06-03 15:57:35.000000000 +0200 @@ -153,11 +153,11 @@ padding-right: 4px; &.down { - -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_left); } &.up { - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_right); } } @@ -180,11 +180,11 @@ padding-bottom: 4px; &.down { - -gtk-icon-source: -gtk-icontheme("go-up-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_up); } &.up { - -gtk-icon-source: -gtk-icontheme("go-down-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_down); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk3/widgets/_treeview.scss new/breeze-gtk-5.22.0/src/gtk3/widgets/_treeview.scss --- old/breeze-gtk-5.21.5/src/gtk3/widgets/_treeview.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk3/widgets/_treeview.scss 2021-06-03 15:57:35.000000000 +0200 @@ -112,7 +112,7 @@ // GtkTreeView uses the larger of the expander???s min-width and min-height min-width: 16px; min-height: 16px; - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_right); color: gtk("@theme_fg_color"); &:dir(rtl) { -gtk-icon-source: -gtk-icontheme("go-next-rtl-symbolic"); @@ -124,7 +124,7 @@ color: gtk("@theme_selected_fg_color"); } &:checked { - -gtk-icon-source: -gtk-icontheme("go-down-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_down); &:selected { color: gtk("@theme_selected_fg_color"); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk4/widgets/_button.scss new/breeze-gtk-5.22.0/src/gtk4/widgets/_button.scss --- old/breeze-gtk-5.21.5/src/gtk4/widgets/_button.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk4/widgets/_button.scss 2021-06-03 15:57:35.000000000 +0200 @@ -406,7 +406,7 @@ **************/ combobox { arrow { - -gtk-icon-source: -gtk-icontheme('go-down-symbolic'); + -gtk-icon-source: -gtk-icontheme($arrow_down); min-height: 16px; min-width: 16px; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk4/widgets/_headerbar.scss new/breeze-gtk-5.22.0/src/gtk4/widgets/_headerbar.scss --- old/breeze-gtk-5.21.5/src/gtk4/widgets/_headerbar.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk4/widgets/_headerbar.scss 2021-06-03 15:57:35.000000000 +0200 @@ -143,7 +143,7 @@ padding: 4px 6px; .arrow { - -gtk-icon-source: -gtk-icontheme('go-down-symbolic'); + -gtk-icon-source: -gtk-icontheme($arrow_down); -gtk-icon-shadow: none; } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk4/widgets/_menus.scss new/breeze-gtk-5.22.0/src/gtk4/widgets/_menus.scss --- old/breeze-gtk-5.21.5/src/gtk4/widgets/_menus.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk4/widgets/_menus.scss 2021-06-03 15:57:35.000000000 +0200 @@ -115,7 +115,7 @@ min-width: 16px; &:dir(ltr) { - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_right); margin-left: 10px; } @@ -139,13 +139,13 @@ &.top { margin-top: -6px; border: none; - -gtk-icon-source: -gtk-icontheme("go-up-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_up); } &.bottom { margin-bottom: -6px; border: none; - -gtk-icon-source: -gtk-icontheme("go-down-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_down); } &:hover { @@ -270,11 +270,11 @@ } &.left { - -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_left); } &.right { - -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); + -gtk-icon-source: -gtk-icontheme($arrow_right); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk4/widgets/_misc.scss new/breeze-gtk-5.22.0/src/gtk4/widgets/_misc.scss --- old/breeze-gtk-5.21.5/src/gtk4/widgets/_misc.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk4/widgets/_misc.scss 2021-06-03 15:57:35.000000000 +0200 @@ -74,10 +74,10 @@ arrow { min-width: 16px; min-height: 16px; - -gtk-icon-source: -gtk-icontheme('go-next-symbolic'); + -gtk-icon-source: -gtk-icontheme($arrow_right); &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('go-next-rtl-symbolic');} &:hover { color: gtkshade(gtk("@theme_fg_color"),1.3); } //only lightens the arrow - &:checked { -gtk-icon-source: -gtk-icontheme('go-down-symbolic'); } + &:checked { -gtk-icon-source: -gtk-icontheme($arrow_down); } } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk4/widgets/_notebook.scss new/breeze-gtk-5.22.0/src/gtk4/widgets/_notebook.scss --- old/breeze-gtk-5.21.5/src/gtk4/widgets/_notebook.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk4/widgets/_notebook.scss 2021-06-03 15:57:35.000000000 +0200 @@ -135,9 +135,9 @@ padding-left: 4px; padding-right: 4px; - &.down { -gtk-icon-source: -gtk-icontheme('go-previous-symbolic'); } + &.down { -gtk-icon-source: -gtk-icontheme($arrow_left); } - &.up { -gtk-icon-source: -gtk-icontheme('go-next-symbolic'); } + &.up { -gtk-icon-source: -gtk-icontheme($arrow_right); } } &.left > tabs > arrow { @@ -158,9 +158,9 @@ padding-top: 4px; padding-bottom: 4px; - &.down { -gtk-icon-source: -gtk-icontheme('go-up-symbolic'); } + &.down { -gtk-icon-source: -gtk-icontheme($arrow_up); } - &.up { -gtk-icon-source: -gtk-icontheme('go-down-symbolic'); } + &.up { -gtk-icon-source: -gtk-icontheme($arrow_down); } } > tabs > arrow { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/gtk4/widgets/_treeview.scss new/breeze-gtk-5.22.0/src/gtk4/widgets/_treeview.scss --- old/breeze-gtk-5.21.5/src/gtk4/widgets/_treeview.scss 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/gtk4/widgets/_treeview.scss 2021-06-03 15:57:35.000000000 +0200 @@ -96,13 +96,13 @@ // GtkTreeView uses the larger of the expander???s min-width and min-height min-width: 16px; min-height: 16px; - -gtk-icon-source: -gtk-icontheme('go-next-symbolic'); + -gtk-icon-source: -gtk-icontheme($arrow_right); color: gtk("@theme_fg_color"); &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('go-next-rtl-symbolic'); }; &:hover { color: gtk("@theme_button_decoration_hover"); } &:selected { color: gtk("@theme_selected_fg_color"); } &:checked { - -gtk-icon-source: -gtk-icontheme('go-down-symbolic'); + -gtk-icon-source: -gtk-icontheme($arrow_down); &:selected { color: gtk("@theme_selected_fg_color"); } &:backdrop { color: gtk("@theme_unfocused_base_color"); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-gtk-5.21.5/src/render_assets.py new/breeze-gtk-5.22.0/src/render_assets.py --- old/breeze-gtk-5.21.5/src/render_assets.py 2021-05-04 13:46:20.000000000 +0200 +++ new/breeze-gtk-5.22.0/src/render_assets.py 2021-06-03 15:57:35.000000000 +0200 @@ -486,7 +486,7 @@ slider.save('scrollbar-slider-horizontal-hover' + ending) slider = Assets(30, 20, scl) - slider.rounded_rectancle(color3, 30, 6, 0, 7, 3, 1) + slider.rounded_rectancle(color3, 30, 6, 0, 7, 3, 0.4) slider.save('scrollbar-slider-horizontal' + ending) slider = Assets(20, 30, scl) @@ -498,7 +498,7 @@ slider.save('scrollbar-slider-vertical-hover' + ending) slider = Assets(20, 30, scl) - slider.rounded_rectancle(color3, 6, 30, 7, 0, 3, 1) + slider.rounded_rectancle(color3, 6, 30, 7, 0, 3, 0.4) slider.save('scrollbar-slider-vertical' + ending) @@ -787,7 +787,7 @@ menu_arrow(selection_fg.rgb, '-selected') menu_arrow(window_fg.insensitive, '-insensitive', window_fg.insensitive_alpha) -scrollbar_slider(button_active.rgb, button_hover.rgb, button_active.rgb) +scrollbar_slider(view_active.rgb, view_hover.rgb, view_fg.rgb) scrollbar_trough(window_fg.rgb) titlebuttons(titlebutton.rgb, titlebutton.rgb, '')
