emacs-devel
[Top][All Lists]
Advanced

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

Re: Deiconifying GTK frames on GNOME shell


From: Dmitry Gutov
Subject: Re: Deiconifying GTK frames on GNOME shell
Date: Tue, 7 Sep 2021 03:45:03 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0

On 06.09.2021 11:32, martin rudalics wrote:
Even after doing (make-frame-visible frame)?

Yup.

Just in case can you confirm that the earlier mentioned

(1) In xterm.c swap the calls to

       gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
       gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));

(2) When trying to deiconify an iconified frame make it invisible first
     and only then make it visible.

hack would work?

Yes, that seems to work. Consistently.

If I don't do (1), BTW, I can do (2) twice, and that also makes the frame visible.

Meaning

  (make-frame-invisible frame)
  (make-frame-visible frame)
  (make-frame-invisible frame)
  (make-frame-visible frame)

If I do (1), then doing (2) only once is sufficient.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]