Skip to content

Commit

Permalink
Merge branch 'gtk3' of github.com:giox069/Remmina into gtk3
Browse files Browse the repository at this point in the history
Help GNOME SHELL to not hide the floating toolbar \FreeRDP#309

Remmina creates the floating toolbar (a popup window) at position y=-200
to have it hidden. But Gnome Shell sometimes is unable to show it.
Creating it at position y=6000 seems to help a little bit
gnome shell not to hide it.
  • Loading branch information
antenore committed Aug 31, 2014
2 parents 33c1938 + 55795ef commit 6031f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remmina/src/remmina_connection_window.c
Original file line number Diff line number Diff line change
Expand Up @@ -1759,7 +1759,7 @@ static void remmina_connection_holder_create_floating_toolbar(RemminaConnectionH
priv->floating_toolbar_label = widget;

/* The position will be moved in configure event instead during maximizing. Just make it invisible here */
gtk_window_move(GTK_WINDOW(window), 0, -200);
gtk_window_move(GTK_WINDOW(window), 0, 6000);
gtk_window_set_accept_focus(GTK_WINDOW(window), FALSE);

priv->floating_toolbar = window;
Expand Down

0 comments on commit 6031f21

Please sign in to comment.