mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-03 07:20:46 +00:00
Fix typo in dialog_class.cpp
This commit is contained in:
parent
60263f4511
commit
8fe01b43f6
@ -111,7 +111,7 @@ struct Dialog {
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setLabelVisibilty(const char* id, bool visible) {
|
void setLabelVisibility(const char* id, bool visible) {
|
||||||
auto it = labelWidgets.find(id);
|
auto it = labelWidgets.find(id);
|
||||||
if (it != labelWidgets.end())
|
if (it != labelWidgets.end())
|
||||||
it->second->setVisible(visible);
|
it->second->setVisible(visible);
|
||||||
@ -743,7 +743,7 @@ int Dialog_modify(lua_State* L)
|
|||||||
if (type != LUA_TNIL) {
|
if (type != LUA_TNIL) {
|
||||||
bool state = lua_toboolean(L, -1);
|
bool state = lua_toboolean(L, -1);
|
||||||
widget->setVisible(state);
|
widget->setVisible(state);
|
||||||
dlg->setLabelVisibilty(id, state);
|
dlg->setLabelVisibility(id, state);
|
||||||
relayout = true;
|
relayout = true;
|
||||||
}
|
}
|
||||||
lua_pop(L, 1);
|
lua_pop(L, 1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user