mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-18 00:48:32 +00:00
Fix typos in function names
This commit is contained in:
parent
2c4aeb4db9
commit
d816b97442
@ -786,7 +786,7 @@ extern "C" {
|
||||
pub fn igPushStyleColor(idx: ImGuiCol, col: ImVec4);
|
||||
pub fn igPopStyleColor(count: c_int);
|
||||
pub fn igPushStyleVar(idx: ImGuiStyleVar, val: c_float);
|
||||
pub fn igPushStyleVavrVec(idx: ImGuiStyleVar, val: ImVec2);
|
||||
pub fn igPushStyleVarVec(idx: ImGuiStyleVar, val: ImVec2);
|
||||
pub fn igPopStyleVar(count: c_int);
|
||||
pub fn igGetFont() -> *mut ImFont;
|
||||
pub fn igGetFontSize() -> c_float;
|
||||
|
||||
@ -137,7 +137,7 @@ impl<'ui, 'p> Window<'ui, 'p> {
|
||||
self
|
||||
}
|
||||
#[inline]
|
||||
pub fn always_vertical_scollbar(mut self, value: bool) -> Self {
|
||||
pub fn always_vertical_scrollbar(mut self, value: bool) -> Self {
|
||||
self.flags.set(ImGuiWindowFlags_AlwaysVerticalScrollbar, value);
|
||||
self
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user