mirror of
https://github.com/swaywm/sway.git
synced 2025-11-03 09:01:43 -05:00
bugfixes, renames
This commit is contained in:
parent
034358dbfd
commit
1a1ac64662
10 changed files with 187 additions and 148 deletions
|
|
@ -119,8 +119,9 @@ bool sway_assert(bool condition, const char* format, ...) {
|
|||
/* XXX:DEBUG:XXX */
|
||||
static void container_log(const swayc_t *c) {
|
||||
fprintf(stderr, "focus:%c|",
|
||||
c->is_focused ? 'F' : // Focused
|
||||
c == active_workspace ? 'W' : // active workspace
|
||||
c == get_focused_view(&root_container) ? 'K':
|
||||
c == get_focused_container(&root_container) ? 'F' : // Focused
|
||||
c == swayc_active_workspace() ? 'W' : // active workspace
|
||||
c == &root_container ? 'R' : // root
|
||||
'X');// not any others
|
||||
fprintf(stderr,"(%p)",c);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue