summaryrefslogtreecommitdiff
path: root/pluma/pluma-status-combo-box.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2018-01-28 21:57:32 +0300
committerraveit65 <[email protected]>2018-01-30 15:54:42 +0100
commit34e5c2d98f8847644a3877ca2f732091661f9e6a (patch)
treec43b64949e5557b51142585d86f43d5c710e632f /pluma/pluma-status-combo-box.c
parentced0b3913385748b6490a4215d7cc9a1681bca77 (diff)
downloadpluma-34e5c2d98f8847644a3877ca2f732091661f9e6a.tar.bz2
pluma-34e5c2d98f8847644a3877ca2f732091661f9e6a.tar.xz
require GTK+ 3.22 and GLib 2.50
Diffstat (limited to 'pluma/pluma-status-combo-box.c')
-rw-r--r--pluma/pluma-status-combo-box.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/pluma/pluma-status-combo-box.c b/pluma/pluma-status-combo-box.c
index 8b8d0004..36b9bd9d 100644
--- a/pluma/pluma-status-combo-box.c
+++ b/pluma/pluma-status-combo-box.c
@@ -111,10 +111,6 @@ pluma_status_combo_box_constructed (GObject *object)
GError *error = NULL;
const gchar style[] =
"* {\n"
-#if !GTK_CHECK_VERSION (3, 20, 0)
- " -GtkWidget-focus-line-width: 0;\n"
- " -GtkWidget-focus-padding: 0;\n"
-#endif
" padding: 0;\n"
"}";
@@ -297,11 +293,7 @@ pluma_status_combo_box_init (PlumaStatusComboBox *self)
gtk_widget_show (self->priv->label);
gtk_label_set_single_line_mode (GTK_LABEL (self->priv->label), TRUE);
-#if GTK_CHECK_VERSION (3, 16, 0)
gtk_label_set_xalign (GTK_LABEL (self->priv->label), 0.0);
-#else
- gtk_misc_set_alignment (GTK_MISC (self->priv->label), 0.0, 0.5);
-#endif
gtk_box_pack_start (GTK_BOX (self->priv->hbox), self->priv->label, FALSE, TRUE, 0);