summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-05-13 17:43:44 +0000
committerMatthias Clasen <mclasen@redhat.com>2020-02-10 00:10:43 -0500
commit9309153abce778a970935b3d0796be4705c60e30 (patch)
tree443235e576bcb7b33516f8d749f9051bb2cf170a
parent643417dc3272c9163b06984b491d2c06db9773cf (diff)
downloadgtk+-9309153abce778a970935b3d0796be4705c60e30.tar.gz
Remove GTK_DEBUG=baselines
This has been reimplemented differently in the inspector.
-rw-r--r--docs/reference/gtk/running.xml4
-rw-r--r--gtk/gtkdebug.h1
-rw-r--r--gtk/gtkmain.c1
3 files changed, 0 insertions, 6 deletions
diff --git a/docs/reference/gtk/running.xml b/docs/reference/gtk/running.xml
index 044ab55356..fe6b7e6c70 100644
--- a/docs/reference/gtk/running.xml
+++ b/docs/reference/gtk/running.xml
@@ -96,10 +96,6 @@ additional environment variables.
<listitem><para>Pretend the pointer is a touchscreen device</para></listitem>
</varlistentry>
<varlistentry>
- <term>baselines</term>
- <listitem><para>Show baselines</para></listitem>
- </varlistentry>
- <varlistentry>
<term>updates</term>
<listitem><para>Visual feedback about window updates</para></listitem>
</varlistentry>
diff --git a/gtk/gtkdebug.h b/gtk/gtkdebug.h
index 936a990639..d3ef264cd1 100644
--- a/gtk/gtkdebug.h
+++ b/gtk/gtkdebug.h
@@ -45,7 +45,6 @@ typedef enum {
GTK_DEBUG_BUILDER = 1 << 7,
GTK_DEBUG_SIZE_REQUEST = 1 << 8,
GTK_DEBUG_NO_CSS_CACHE = 1 << 9,
- GTK_DEBUG_BASELINES = 1 << 10,
GTK_DEBUG_INTERACTIVE = 1 << 11,
GTK_DEBUG_TOUCHSCREEN = 1 << 12,
GTK_DEBUG_ACTIONS = 1 << 13,
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 36ec67891d..da2af519fd 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -172,7 +172,6 @@ static const GDebugKey gtk_debug_keys[] = {
{ "builder", GTK_DEBUG_BUILDER },
{ "size-request", GTK_DEBUG_SIZE_REQUEST },
{ "no-css-cache", GTK_DEBUG_NO_CSS_CACHE },
- { "baselines", GTK_DEBUG_BASELINES },
{ "interactive", GTK_DEBUG_INTERACTIVE },
{ "touchscreen", GTK_DEBUG_TOUCHSCREEN },
{ "actions", GTK_DEBUG_ACTIONS },