[totem/uajain/gtk-window-present] totem-object: Present application window on top if already open



commit 88a6e5f48ae8c8fa81eecca0ee0cc079f1277254
Author: Umang Jain <umang endlessm com>
Date:   Sat Mar 9 12:11:59 2019 +0530

    totem-object: Present application window on top if already open
    
    This raises the application window on the top of the stack of
    all the open windows and present it to the user.
    See gtk_window_present() documentation for more details.

 src/totem-object.c | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/src/totem-object.c b/src/totem-object.c
index 3a02c7e61..97de52d5f 100644
--- a/src/totem-object.c
+++ b/src/totem-object.c
@@ -140,11 +140,13 @@ totem_object_app_open (GApplication  *application,
                       const char    *hint)
 {
        GSList *slist = NULL;
+       Totem *totem = TOTEM_OBJECT (application);
        int i;
 
        optionstate.had_filenames = (n_files > 0);
 
        g_application_activate (application);
+       gtk_window_present (GTK_WINDOW (totem->win));
 
        totem_object_set_main_page (TOTEM_OBJECT (application), "player");
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]