Compare commits

...

1 Commits

Author SHA1 Message Date
Nelson Benítez León
18550b4c6c user-accounts: close CcAvatarChooser before showing GtkFileChooser
so that the first click on the FileChooser is not used to just
close the CcAvatarChooser dialog.

Close issue #2315
2023-02-20 09:03:54 +00:00

View File

@@ -183,6 +183,7 @@ cc_avatar_chooser_select_file (CcAvatarChooser *self)
g_signal_connect_object (chooser, "response",
G_CALLBACK (file_chooser_response), self, G_CONNECT_SWAPPED);
gtk_popover_popdown (GTK_POPOVER (self));
gtk_window_present (GTK_WINDOW (chooser));
}