st: Fix property type

Commit 8f3554ff accidentally changed the type of the StWidget:track-hover
property from boolean to object.

https://gitlab.gnome.org/GNOME/gnome-shell/issues/1482
This commit is contained in:
Florian Müllner 2019-08-01 12:43:48 +02:00
parent 02b47f4640
commit 5295866eff

View File

@ -927,11 +927,11 @@ st_widget_class_init (StWidgetClass *klass)
* widget.
*/
props[PROP_TRACK_HOVER] =
g_param_spec_object ("track-hover",
"Track hover",
"Determines whether the widget tracks hover state",
FALSE,
ST_PARAM_READWRITE);
g_param_spec_boolean ("track-hover",
"Track hover",
"Determines whether the widget tracks hover state",
FALSE,
ST_PARAM_READWRITE);
/**
* StWidget:hover: