From 8bd2ce770e94a7ff600b4e3d4472a5818064c273 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 16 Sep 2005 14:25:25 +0000 Subject: Allow negative doubles in left/top properties 2005-09-16 Marco Pesenti Gritti * backend/ev-link.c: (ev_link_class_init): Allow negative doubles in left/top properties --- (limited to 'backend') diff --git a/backend/ev-link.c b/backend/ev-link.c index cde4355..e1eb91e 100644 --- a/backend/ev-link.c +++ b/backend/ev-link.c @@ -293,7 +293,7 @@ ev_link_class_init (EvLinkClass *ev_window_class) g_param_spec_double ("left", "Left coordinate", "The left coordinate", - 0, + -G_MAXDOUBLE, G_MAXDOUBLE, 0, G_PARAM_READWRITE | @@ -303,7 +303,7 @@ ev_link_class_init (EvLinkClass *ev_window_class) g_param_spec_double ("top", "Top coordinate", "The top coordinate", - 0, + -G_MAXDOUBLE, G_MAXDOUBLE, 0, G_PARAM_READWRITE | -- cgit v0.9.1