autocommit 2022-03-24 18:27:42 CET
This commit is contained in:
parent
b3a27f889a
commit
3b1b843821
17 changed files with 388 additions and 212 deletions
|
|
@ -104,6 +104,16 @@ impl Seat {
|
|||
get!().seat_set_repeat_rate(self, rate, delay)
|
||||
}
|
||||
|
||||
pub fn mono(self) -> bool {
|
||||
let mut res = false;
|
||||
(|| res = get!().mono(self))();
|
||||
res
|
||||
}
|
||||
|
||||
pub fn set_mono(self, mono: bool) {
|
||||
get!().set_mono(self, mono)
|
||||
}
|
||||
|
||||
pub fn split(self) -> Axis {
|
||||
let mut res = Axis::Horizontal;
|
||||
(|| res = get!().split(self))();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue