diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:30:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:30:19 +0000 |
commit | 5c1676dfe6d2f3c837a5e074117b45613fd29a72 (patch) | |
tree | cbffb45144febf451e54061db2b21395faf94bfe /etc/gtkrc | |
parent | Initial commit. (diff) | |
download | gimp-upstream.tar.xz gimp-upstream.zip |
Adding upstream version 2.10.34.upstream/2.10.34upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | etc/gtkrc | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/etc/gtkrc b/etc/gtkrc new file mode 100644 index 0000000..6df187a --- /dev/null +++ b/etc/gtkrc @@ -0,0 +1,37 @@ +# pixmap_path "<dir 1>:<dir 2>:<dir 3>:..." +# +# include "rc-file" +# +# style <name> [= <name>] +# { +# <option> +# } +# +# widget <widget_set> style <style_name> +# class <widget_class_set> style <style_name> +# +# You can add your own GIMP-specific GTK styles here. + + +# +# Adjust the size of previews in plug-in dialogs: +# +style "gimp-large-preview" +{ + GimpPreview::size = 256 +} + +# class "GimpPreview" style "gimp-large-preview" + +# +# Change the combo-box popup style: +# +# This only has effect if GTK is built with the patches +# in the GIMP source-tree's build/patches/ directory. +# +style "combo-box-popup-style" +{ + GtkComboBox::popup-style = GTK_COMBO_BOX_POPUP_LIST +} + +class "GtkComboBox" style "combo-box-popup-style" |