summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vtegtk.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/vtegtk.cc b/src/vtegtk.cc
index fd8214e9..465407d6 100644
--- a/src/vtegtk.cc
+++ b/src/vtegtk.cc
@@ -3163,6 +3163,17 @@ vte_terminal_get_geometry_hints(VteTerminal *terminal,
hints->height_inc = impl->char_height;
hints->min_width = hints->base_width + hints->width_inc * min_columns;
hints->min_height = hints->base_height + hints->height_inc * min_rows;
+
+ _vte_debug_print(VTE_DEBUG_WIDGET_SIZE,
+ "[Terminal %p] Geometry char width %ld height %ld\n"
+ " base width %d height %d\n"
+ " increments width %d height %d\n"
+ " minimum width %d height %d\n",
+ terminal,
+ impl->char_width, impl->char_height,
+ hints->base_width, hints->base_height,
+ hints->width_inc, hints->height_inc,
+ hints->min_width, hints->min_height);
}
/**