This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository mteleplayer. from 747f5a7 Relaxing some timeout limits to prevent premature selfdestruction on slow connections new 800e286 mTP GUI: use gtk_window_present() instead of gtk_window_deiconify/_iconify. This is more reliable. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: serverside/bin/mteleplayer | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/mteleplayer.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository mteleplayer. commit 800e286b01e0a4e756f7b240a2ea9e4e98ea03a3 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Aug 29 21:11:11 2014 +0200 mTP GUI: use gtk_window_present() instead of gtk_window_deiconify/_iconify. This is more reliable. --- serverside/bin/mteleplayer | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/serverside/bin/mteleplayer b/serverside/bin/mteleplayer index 4b9b2db..9959e16 100755 --- a/serverside/bin/mteleplayer +++ b/serverside/bin/mteleplayer @@ -512,7 +512,7 @@ sub handleTheLocalSocket { appDBugLog("##################### REINIT MTP ########################"); $sstatusi{'runState'} = "R"; print $LocalSocket "APP|RESUME|mteleplayer|$selfSID|\n"; - $GTKS{'MainAppWindow'}->iconify;$GTKS{'MainAppWindow'}->deiconify; + $GTKS{'MainAppWindow'}->present; stateChangePAUSED(0); } @@ -726,8 +726,7 @@ sub actOnEnqueuedMEDIA { $PlayerStatus{'currentMediaSeek'} = 0; appCOM("MPCMD|PLAYMEDIA|$1|FILE|0|0|"); if ($_[2] eq 1) { - $GTKS{'MainAppWindow'}->iconify; - $GTKS{'MainAppWindow'}->deiconify; + $GTKS{'MainAppWindow'}->present; } } $GTKS{'MainMediaEBOXGFX'}->set_from_pixbuf($GTKS{'PixBUF'}{'eyesore'}); -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/mteleplayer.git