(Pierre-Luc Beaudoin)
* Fix polygon not visible at higher zoom levels (Pierre-Luc Beaudoin)
* 594963: Initial scrolling results in map being in Antarctica (Pierre-Luc Beaudoin)
+* Make default selection mode in ChamplainSelectionMode single to match Gtk+
+ (Pierre-Luc Beaudoin)
libchamplain 0.3.92 (2009-09-03)
===============================
*
* A ChamplainSelectionLayer is little more than a #ChamplainLayer. The markers
* can be selected.
- *
- * Use #clutter_container_add to add markers to the layer and
- * #clutter_container_remove to remove them.
*/
#include "config.h"
"Selection Mode",
"Determines the type of selection that will be performed.",
CHAMPLAIN_TYPE_SELECTION_MODE,
- CHAMPLAIN_SELECTION_MULTIPLE,
+ CHAMPLAIN_SELECTION_SINGLE,
CHAMPLAIN_PARAM_READWRITE));
}
champlain_selection_layer_init (ChamplainSelectionLayer *self)
{
self->priv = GET_PRIVATE (self);
- self->priv->mode = CHAMPLAIN_SELECTION_MULTIPLE;
+ self->priv->mode = CHAMPLAIN_SELECTION_SINGLE;
self->priv->selection = NULL;
g_signal_connect_after (G_OBJECT (self), "actor-added",
{
g_return_val_if_fail (
CHAMPLAIN_IS_SELECTION_LAYER (layer),
- CHAMPLAIN_SELECTION_MULTIPLE);
+ CHAMPLAIN_SELECTION_SINGLE);
return layer->priv->mode;
}