mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix missing hover style for Ignore Error breaks button
This commit is contained in:
parent
0c51ede243
commit
b5efac3156
1 changed files with 2 additions and 2 deletions
|
@ -2011,10 +2011,10 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
||||||
skip_breakpoints->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_skip_breakpoints));
|
skip_breakpoints->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_skip_breakpoints));
|
||||||
|
|
||||||
ignore_error_breaks = memnew(Button);
|
ignore_error_breaks = memnew(Button);
|
||||||
ignore_error_breaks->set_flat(true);
|
ignore_error_breaks->set_theme_type_variation(SceneStringName(FlatButton));
|
||||||
ignore_error_breaks->set_tooltip_text(TTR("Ignore Error Breaks"));
|
ignore_error_breaks->set_tooltip_text(TTR("Ignore Error Breaks"));
|
||||||
hbc->add_child(ignore_error_breaks);
|
hbc->add_child(ignore_error_breaks);
|
||||||
ignore_error_breaks->connect("pressed", callable_mp(this, &ScriptEditorDebugger::debug_ignore_error_breaks));
|
ignore_error_breaks->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_ignore_error_breaks));
|
||||||
|
|
||||||
hbc->add_child(memnew(VSeparator));
|
hbc->add_child(memnew(VSeparator));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue