Skip to content
Snippets Groups Projects
Commit a4191595 authored by Olivier Fourdan's avatar Olivier Fourdan
Browse files

Seems that the popup displaying window size and/or position is confusing the...

Seems that the popup displaying window size and/or position is confusing the event management so that a button press followed immediatly by a button release misses the release event, so don't use a gtk_widget_show_now () (Fix bug #1467)

(Old svn revision: 19916)
parent 299d2bd8
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ poswinShow (Poswin * poswin)
{
g_return_if_fail (poswin != NULL);
gtk_widget_show_now (poswin->window);
gtk_widget_show (poswin->window);
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment