summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Techet <techet@gmail.com>2014-08-11 22:10:27 +0200
committerJiří Techet <techet@gmail.com>2014-08-11 22:10:27 +0200
commitb594983b8fdddb953a66c6c47c3cfd60e4be3e34 (patch)
treefe340b44dd7c5ae9903fcdf4b8ccccdd2f86731a
parent71e70cc37bdbaca307d3270991d2fd0ca140890e (diff)
downloadlibchamplain-b594983b8fdddb953a66c6c47c3cfd60e4be3e34.tar.gz
Set the kinetic-mode property default value to FALSE
This way it corresponds to the actual behavior.
-rw-r--r--champlain/champlain-view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/champlain/champlain-view.c b/champlain/champlain-view.c
index a57f047..d9128a1 100644
--- a/champlain/champlain-view.c
+++ b/champlain/champlain-view.c
@@ -835,7 +835,7 @@ champlain_view_class_init (ChamplainViewClass *champlainViewClass)
g_param_spec_boolean ("kinetic-mode",
"Kinetic Mode",
"Determines whether the view should use kinetic mode.",
- TRUE,
+ FALSE,
CHAMPLAIN_PARAM_READWRITE));
/**
@@ -1115,7 +1115,7 @@ champlain_view_init (ChamplainView *view)
priv->zoom_on_double_click = TRUE;
priv->animate_zoom = TRUE;
priv->license_actor = NULL;
- priv->kinetic_mode = TRUE;
+ priv->kinetic_mode = FALSE;
priv->viewport_x = 0;
priv->viewport_y = 0;
priv->viewport_width = 0;