add directional focus navigation for floating windows
Map left/down to previous and right/up to next in the workspace stacking order, with wrapping. Does not cross to the tiled layer.
This commit is contained in:
parent
d353779c10
commit
9bd7e14b08
3 changed files with 40 additions and 1 deletions
|
|
@ -549,7 +549,11 @@ impl Renderer<'_> {
|
|||
let tpuh = theme.title_plus_underline_height();
|
||||
let tuh = theme.title_underline_height();
|
||||
let bw = theme.sizes.border_width.get();
|
||||
let bc = theme.colors.border.get();
|
||||
let bc = if floating.active.get() {
|
||||
theme.colors.focused_title_background.get()
|
||||
} else {
|
||||
theme.colors.border.get()
|
||||
};
|
||||
let tc = if floating.active.get() {
|
||||
theme.colors.focused_title_background.get()
|
||||
} else if floating.attention_requested.get() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue