From: Marco Pesenti Gritti Date: Fri, 16 Sep 2005 14:25:25 +0000 (+0000) Subject: Allow negative doubles in left/top properties X-Git-Tag: EVINCE_0_5_0~158 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=8bd2ce770e94a7ff600b4e3d4472a5818064c273;p=evince.git 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 --- diff --git a/ChangeLog b/ChangeLog index a0e6cfeb..0eedcc14 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-09-16 Marco Pesenti Gritti + + * backend/ev-link.c: (ev_link_class_init): + + Allow negative doubles in left/top properties + 2005-09-16 Marco Pesenti Gritti * shell/ev-window.c: diff --git a/backend/ev-link.c b/backend/ev-link.c index cde43554..e1eb91ee 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 |