client: Do not update selection if current not removed
This commit is contained in:
parent
4a232d4a08
commit
a94701ffc7
1 changed files with 2 additions and 1 deletions
|
|
@ -564,7 +564,8 @@ public class ConversationList.View : Gtk.ScrolledWindow, Geary.BaseInterface {
|
|||
} else if (this.selection_mode_enabled) {
|
||||
this.selection_mode_enabled = false;
|
||||
// Set next conversation
|
||||
} else if (this.config.autoselect) {
|
||||
} else if (this.config.autoselect &&
|
||||
this.list.get_selected_rows().length() == 0) {
|
||||
restore_row();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue