diff options
-rw-r--r-- | pluma/pluma-status-combo-box.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pluma/pluma-status-combo-box.c b/pluma/pluma-status-combo-box.c index 055dc0be..20166c59 100644 --- a/pluma/pluma-status-combo-box.c +++ b/pluma/pluma-status-combo-box.c @@ -306,8 +306,12 @@ pluma_status_combo_box_init (PlumaStatusComboBox *self) #endif gtk_box_pack_start (GTK_BOX (self->priv->hbox), self->priv->item, TRUE, TRUE, 0); - + +#if GTK_CHECK_VERSION (3, 0, 0) + self->priv->arrow = gtk_image_new_from_icon_name ("pan-down-symbolic", GTK_ICON_SIZE_BUTTON); +#else self->priv->arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE); +#endif gtk_widget_show (self->priv->arrow); #if GTK_CHECK_VERSION (3, 0, 0) gtk_widget_set_halign (self->priv->arrow, GTK_ALIGN_CENTER); |