Register RTL versions of the indent and unindent icons. (#326857, Itai
2006-01-14 Matthias Clasen <mclasen@redhat.com> * gtk/gtkiconfactory.c (get_default_icons): Register RTL versions of the indent and unindent icons. (#326857, Itai Bar-Haim) * gtk/Makefile.am (STOCK_ICONS): And add them here.
@ -1,5 +1,11 @@
|
||||
2006-01-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconfactory.c (get_default_icons): Register RTL
|
||||
versions of the indent and unindent icons. (#326857,
|
||||
Itai Bar-Haim)
|
||||
|
||||
* gtk/Makefile.am (STOCK_ICONS): And add them here.
|
||||
|
||||
Fix a crash with combo boxes in RESIZE_IMMEDIATE
|
||||
containers. (#326806, Sebastian Bacher)
|
||||
|
||||
|
@ -1,5 +1,11 @@
|
||||
2006-01-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconfactory.c (get_default_icons): Register RTL
|
||||
versions of the indent and unindent icons. (#326857,
|
||||
Itai Bar-Haim)
|
||||
|
||||
* gtk/Makefile.am (STOCK_ICONS): And add them here.
|
||||
|
||||
Fix a crash with combo boxes in RESIZE_IMMEDIATE
|
||||
containers. (#326806, Sebastian Bacher)
|
||||
|
||||
|
@ -778,7 +778,8 @@ STOCK_ICONS = \
|
||||
stock-icons/16/gtk-harddisk.png \
|
||||
stock-icons/16/gtk-help.png \
|
||||
stock-icons/16/gtk-home.png \
|
||||
stock-icons/16/gtk-indent.png \
|
||||
stock-icons/16/gtk-indent-ltr.png \
|
||||
stock-icons/16/gtk-indent-rtl.png \
|
||||
stock-icons/16/gtk-index.png \
|
||||
stock-icons/16/gtk-info.png \
|
||||
stock-icons/16/gtk-jump-to-ltr.png \
|
||||
@ -827,7 +828,8 @@ STOCK_ICONS = \
|
||||
stock-icons/16/gtk-underline.png \
|
||||
stock-icons/16/gtk-undo-ltr.png \
|
||||
stock-icons/16/gtk-undo-rtl.png \
|
||||
stock-icons/16/gtk-unindent.png \
|
||||
stock-icons/16/gtk-unindent-ltr.png \
|
||||
stock-icons/16/gtk-unindent-rtl.png \
|
||||
stock-icons/16/gtk-zoom-100.png \
|
||||
stock-icons/16/gtk-zoom-fit.png \
|
||||
stock-icons/16/gtk-zoom-in.png \
|
||||
@ -870,7 +872,8 @@ STOCK_ICONS = \
|
||||
stock-icons/24/gtk-harddisk.png \
|
||||
stock-icons/24/gtk-help.png \
|
||||
stock-icons/24/gtk-home.png \
|
||||
stock-icons/24/gtk-indent.png \
|
||||
stock-icons/24/gtk-indent-ltr.png \
|
||||
stock-icons/24/gtk-indent-rtl.png \
|
||||
stock-icons/24/gtk-index.png \
|
||||
stock-icons/24/gtk-info.png \
|
||||
stock-icons/24/gtk-italic.png \
|
||||
@ -922,7 +925,8 @@ STOCK_ICONS = \
|
||||
stock-icons/24/gtk-underline.png \
|
||||
stock-icons/24/gtk-undo-ltr.png \
|
||||
stock-icons/24/gtk-undo-rtl.png \
|
||||
stock-icons/24/gtk-unindent.png \
|
||||
stock-icons/24/gtk-unindent-ltr.png \
|
||||
stock-icons/24/gtk-unindent-rtl.png \
|
||||
stock-icons/24/gtk-zoom-100.png \
|
||||
stock-icons/24/gtk-zoom-fit.png \
|
||||
stock-icons/24/gtk-zoom-in.png \
|
||||
|
@ -482,8 +482,14 @@ get_default_icons (GtkIconFactory *factory)
|
||||
register_stock_icon (factory, GTK_STOCK_ITALIC);
|
||||
register_stock_icon (factory, GTK_STOCK_STRIKETHROUGH);
|
||||
register_stock_icon (factory, GTK_STOCK_UNDERLINE);
|
||||
register_stock_icon (factory, GTK_STOCK_INDENT);
|
||||
register_stock_icon (factory, GTK_STOCK_UNINDENT);
|
||||
register_bidi_stock_icon (factory,
|
||||
GTK_STOCK_INDENT,
|
||||
GTK_STOCK_INDENT "-ltr",
|
||||
GTK_STOCK_INDENT "-rtl");
|
||||
register_bidi_stock_icon (factory,
|
||||
GTK_STOCK_UNINDENT,
|
||||
GTK_STOCK_UNINDENT "-ltr",
|
||||
GTK_STOCK_UNINDENT "-rtl");
|
||||
register_stock_icon (factory, GTK_STOCK_GOTO_TOP);
|
||||
register_stock_icon (factory, GTK_STOCK_DELETE);
|
||||
register_bidi_stock_icon (factory,
|
||||
|
Before Width: | Height: | Size: 420 B After Width: | Height: | Size: 420 B |
BIN
gtk/stock-icons/16/gtk-indent-rtl.png
Normal file
After Width: | Height: | Size: 453 B |
Before Width: | Height: | Size: 425 B After Width: | Height: | Size: 425 B |
BIN
gtk/stock-icons/16/gtk-unindent-rtl.png
Normal file
After Width: | Height: | Size: 461 B |
Before Width: | Height: | Size: 582 B After Width: | Height: | Size: 582 B |
BIN
gtk/stock-icons/24/gtk-indent-rtl.png
Normal file
After Width: | Height: | Size: 629 B |
Before Width: | Height: | Size: 599 B After Width: | Height: | Size: 599 B |
BIN
gtk/stock-icons/24/gtk-unindent-rtl.png
Normal file
After Width: | Height: | Size: 640 B |