diff options
Diffstat (limited to 'tdegtk/tdegtk-support.c')
-rw-r--r-- | tdegtk/tdegtk-support.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/tdegtk/tdegtk-support.c b/tdegtk/tdegtk-support.c index 52c161d..431769e 100644 --- a/tdegtk/tdegtk-support.c +++ b/tdegtk/tdegtk-support.c @@ -76,14 +76,5 @@ tdegtk_trim_scale_allocation (GtkThemingEngine *engine, gdouble *width, gdouble *height) { - if (!gtk_theming_engine_has_class (engine, GTK_STYLE_CLASS_VERTICAL)) - { - *y += (gint) (*height / 2.0) - 2.0; - *height = 5; - } - else - { - *x += (gint) (*width / 2.0) - 2.0; - *width = 5; - } + // Do nothing! } |