widget: Remove text-handle-width/height style properties

This commit is contained in:
Timm Bäder 2016-10-04 21:15:52 +02:00 committed by Benjamin Otte
parent 9f5baf9130
commit b1d35a594e

View File

@ -3283,20 +3283,6 @@ gtk_widget_class_init (GtkWidgetClass *klass)
FALSE,
GTK_PARAM_READABLE));
gtk_widget_class_install_style_property (klass,
g_param_spec_int ("text-handle-width",
P_("Width of text selection handles"),
P_("Width of text selection handles"),
1, G_MAXINT, 16,
GTK_PARAM_READABLE));
gtk_widget_class_install_style_property (klass,
g_param_spec_int ("text-handle-height",
P_("Height of text selection handles"),
P_("Height of text selection handles"),
1, G_MAXINT, 20,
GTK_PARAM_READABLE));
gtk_widget_class_set_accessible_type (klass, GTK_TYPE_WIDGET_ACCESSIBLE);
gtk_widget_class_set_css_name (klass, "widget");
}