mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix yet another selection issue
If we manually deselect dives without changing Gtk's notion of what is selected and then want to simply recreate the dive list, Gtk re-selects the unselected dives in the process of clearing out the dive list. How very strange. Also, after making changes to the selection we need to make sure that we update the stats. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
2742d59b36
commit
8316564356
2 changed files with 13 additions and 14 deletions
|
|
@ -56,6 +56,7 @@ static struct DiveList dive_list;
|
|||
#define LISTSTORE(_dl) GTK_TREE_STORE((_dl).listmodel)
|
||||
|
||||
short autogroup = FALSE;
|
||||
static gboolean ignore_selection_changes = FALSE;
|
||||
static gboolean in_set_cursor = FALSE;
|
||||
static gboolean set_selected(GtkTreeModel *model, GtkTreePath *path,
|
||||
GtkTreeIter *iter, gpointer data);
|
||||
|
|
@ -780,8 +781,10 @@ static void restore_tree_state(void);
|
|||
void dive_list_update_dives(void)
|
||||
{
|
||||
dive_table.preexisting = dive_table.nr;
|
||||
ignore_selection_changes = TRUE;
|
||||
gtk_tree_store_clear(TREESTORE(dive_list));
|
||||
gtk_tree_store_clear(LISTSTORE(dive_list));
|
||||
ignore_selection_changes = FALSE;
|
||||
fill_dive_list();
|
||||
restore_tree_state();
|
||||
repaint_dive();
|
||||
|
|
@ -2056,6 +2059,9 @@ static void selection_cb(GtkTreeSelection *selection, GtkTreeModel *model)
|
|||
int i, fixup;
|
||||
struct dive *dive;
|
||||
|
||||
if (ignore_selection_changes)
|
||||
return;
|
||||
|
||||
gtk_tree_selection_selected_foreach(selection, entry_selected, model);
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue