summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-11-04 23:24:49 +0000
committerMatthias Clasen <mclasen@redhat.com>2019-11-04 23:24:49 +0000
commit53c9eb5a5b008aa64bf385aca367ccce1592b298 (patch)
tree381b67c87fda410d3953e658442ba1615a887212
parent6e5da14294aeba6e961fa06e9157a398d90fa1bf (diff)
downloadgtk+-53c9eb5a5b008aa64bf385aca367ccce1592b298.tar.gz
Move the ifdef to the right spot
-rw-r--r--gtk/gtkcellrenderertext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcellrenderertext.c b/gtk/gtkcellrenderertext.c
index f38a1c2bf3..a5e662fd03 100644
--- a/gtk/gtkcellrenderertext.c
+++ b/gtk/gtkcellrenderertext.c
@@ -1521,11 +1521,11 @@ get_layout (GtkCellRendererText *celltext,
uline = PANGO_UNDERLINE_SINGLE;
break;
-#if PANGO_VERSION_CHECK(1,45,0)
case PANGO_UNDERLINE_SINGLE:
uline = PANGO_UNDERLINE_DOUBLE;
break;
+#if PANGO_VERSION_CHECK(1,45,0)
case PANGO_UNDERLINE_SINGLE_LINE:
uline = PANGO_UNDERLINE_DOUBLE_LINE;
break;