mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-12 05:58:35 +00:00
Add missing key_super method
This commit is contained in:
parent
b98e57d055
commit
cbe118f4ec
@ -331,6 +331,10 @@ impl ImGui {
|
||||
let io = self.io_mut();
|
||||
io.key_alt = value;
|
||||
}
|
||||
pub fn key_super(&self) -> bool {
|
||||
let io = self.io();
|
||||
io.key_super
|
||||
}
|
||||
pub fn set_key_super(&mut self, value: bool) {
|
||||
let io = self.io_mut();
|
||||
io.key_super = value;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user