THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#746 - Restore ontop property after returning from fullscreen
User who did this - Uli Schlachter (psychon)

----------
Ohhhhh....

Looking at the source code in objects/client.c:

client_set_fullscreen(lua_State *L, int cidx, bool s)
{
[..]
       /* become fullscreen! */
       if(s)
       {
           /* remove any max state */
           client_set_maximized_horizontal(L, cidx, false);
           client_set_maximized_vertical(L, cidx, false);
           /* You can only be part of one of the special layers. */
           client_set_below(L, cidx, false);
           client_set_above(L, cidx, false);
           client_set_ontop(L, cidx, false);
[..]
client_set_ontop(lua_State *L, int cidx, bool s)
{
[..]
       /* You can only be part of one of the special layers. */
       if(s)
       {
           client_set_above(L, cidx, false);
           client_set_below(L, cidx, false);
           client_set_fullscreen(L, cidx, false);
[..]

Why can't a client not be fullscreen and ontop at the same time?
No idea what we can do about this. :/
Ideas?
----------

More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=746#comment1905

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

--
To unsubscribe, send mail to [email protected].

Reply via email to