
Add a GTK+ patch providing a "popup-style" combo-box style property, allowing to manually control the combo-box popup-style. Use the LIST style for all combo-boxes in our system-wide gtkrc file; this only has effect if GTK+ was built with the above patch.
38 lines
722 B
Plaintext
38 lines
722 B
Plaintext
# 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"
|