fix: console/chat open still available when menu is open & cleanup
This commit is contained in:
parent
31d5cb6880
commit
c7061c70cb
@ -330,7 +330,7 @@ function __vc_on_hud_open()
|
||||
hud._set_debug_cheats(value)
|
||||
end)
|
||||
input.add_callback("devtools.console", function()
|
||||
if hud.is_paused() then
|
||||
if menu.page ~= "" then
|
||||
return
|
||||
end
|
||||
time.post_runnable(function()
|
||||
@ -338,7 +338,7 @@ function __vc_on_hud_open()
|
||||
end)
|
||||
end)
|
||||
input.add_callback("hud.chat", function()
|
||||
if hud.is_paused() then
|
||||
if menu.page ~= "" then
|
||||
return
|
||||
end
|
||||
time.post_runnable(function()
|
||||
|
||||
@ -408,7 +408,9 @@ void TextBox::refresh() {
|
||||
Container::refresh();
|
||||
label->setSize(size-glm::vec2(padding.z+padding.x, padding.w+padding.y));
|
||||
label->setPos(glm::vec2(
|
||||
padding.x + LINE_NUMBERS_PANE_WIDTH * showLineNumbers + textInitX - static_cast<int>(textOffset), padding.y
|
||||
padding.x + LINE_NUMBERS_PANE_WIDTH * showLineNumbers + textInitX -
|
||||
static_cast<int>(textOffset),
|
||||
padding.y
|
||||
));
|
||||
}
|
||||
|
||||
@ -815,8 +817,8 @@ size_t TextBox::getCaret() const {
|
||||
return caret;
|
||||
}
|
||||
|
||||
void TextBox::setCaret(size_t position, bool ignoreFormatting) {
|
||||
const auto& labelText = ignoreFormatting ? label->getText() : input;
|
||||
void TextBox::setCaret(size_t position) {
|
||||
const auto& labelText = label->getText();
|
||||
caret = std::min(static_cast<size_t>(position), input.length());
|
||||
if (font == nullptr) {
|
||||
return;
|
||||
|
||||
@ -152,7 +152,7 @@ namespace gui {
|
||||
|
||||
/// @brief Set caret position in the text
|
||||
/// @param position integer in range [0, text.length()]
|
||||
virtual void setCaret(size_t position, bool ignoreFormatting = true);
|
||||
virtual void setCaret(size_t position);
|
||||
|
||||
/// @brief Set caret position in the text
|
||||
/// @param position integer in range [-text.length(), text.length()]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user