Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-15 | Make focus part of transactions | Ryan Dwyer | |
Rather than maintain copies of the entire focus stack, this PR transactionises the focus by introducing two new properties to the container state and using those when rendering. * `bool focused` means this container has actual focus. Only one container should have this equalling true in its current state. * `struct sway_container *focus_inactive_child` points to the immediate child that was most recently focused (eg. for tabbed and stacked containers). | |||
2018-07-14 | Add extended debugging flags | Drew DeVault | |
We currently have several ways of setting debug flags, including command line arguments, environment variables, and compile-time macros. This replaces the lot with command line flags. | |||
2018-07-11 | Use saved buffer when fullscreen view is in a transaction | Ryan Dwyer | |
Fixes #2237. | |||
2018-07-10 | removed unnecessary parens | russ morris | |
2018-07-10 | fix line lengths | russ morris | |
2018-07-10 | tabs instead of spaces | russ morris | |
2018-07-10 | fix tabbed titlebar widths | russ morris | |
2018-07-10 | Fix titlebar rendering for nested stacked containers | Konstantin Pospelov | |
2018-07-07 | Split renderer | emersion | |