mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Merge pull request #64885 from Mickeon/rename-tooltip-hint
Rename `hint_tooltip` to `tooltip_text` & setter getter
This commit is contained in:
commit
f7f8af232c
85 changed files with 468 additions and 463 deletions
|
|
@ -369,7 +369,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
|
|||
}
|
||||
}
|
||||
|
||||
vmem_total->set_tooltip(TTR("Bytes:") + " " + itos(total));
|
||||
vmem_total->set_tooltip_text(TTR("Bytes:") + " " + itos(total));
|
||||
vmem_total->set_text(String::humanize_size(total));
|
||||
|
||||
} else if (p_msg == "stack_dump") {
|
||||
|
|
@ -776,7 +776,7 @@ void ScriptEditorDebugger::_set_reason_text(const String &p_reason, MessageType
|
|||
reason->add_theme_color_override("font_color", get_theme_color(SNAME("success_color"), SNAME("Editor")));
|
||||
}
|
||||
reason->set_text(p_reason);
|
||||
reason->set_tooltip(p_reason.word_wrap(80));
|
||||
reason->set_tooltip_text(p_reason.word_wrap(80));
|
||||
}
|
||||
|
||||
void ScriptEditorDebugger::_notification(int p_what) {
|
||||
|
|
@ -964,7 +964,7 @@ void ScriptEditorDebugger::stop() {
|
|||
peer->close();
|
||||
peer.unref();
|
||||
reason->set_text("");
|
||||
reason->set_tooltip("");
|
||||
reason->set_tooltip_text("");
|
||||
}
|
||||
|
||||
node_path_cache.clear();
|
||||
|
|
@ -1706,7 +1706,7 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
|||
skip_breakpoints = memnew(Button);
|
||||
skip_breakpoints->set_flat(true);
|
||||
hbc->add_child(skip_breakpoints);
|
||||
skip_breakpoints->set_tooltip(TTR("Skip Breakpoints"));
|
||||
skip_breakpoints->set_tooltip_text(TTR("Skip Breakpoints"));
|
||||
skip_breakpoints->connect("pressed", callable_mp(this, &ScriptEditorDebugger::debug_skip_breakpoints));
|
||||
|
||||
hbc->add_child(memnew(VSeparator));
|
||||
|
|
@ -1714,7 +1714,7 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
|||
copy = memnew(Button);
|
||||
copy->set_flat(true);
|
||||
hbc->add_child(copy);
|
||||
copy->set_tooltip(TTR("Copy Error"));
|
||||
copy->set_tooltip_text(TTR("Copy Error"));
|
||||
copy->connect("pressed", callable_mp(this, &ScriptEditorDebugger::debug_copy));
|
||||
|
||||
hbc->add_child(memnew(VSeparator));
|
||||
|
|
@ -1722,14 +1722,14 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
|||
step = memnew(Button);
|
||||
step->set_flat(true);
|
||||
hbc->add_child(step);
|
||||
step->set_tooltip(TTR("Step Into"));
|
||||
step->set_tooltip_text(TTR("Step Into"));
|
||||
step->set_shortcut(ED_GET_SHORTCUT("debugger/step_into"));
|
||||
step->connect("pressed", callable_mp(this, &ScriptEditorDebugger::debug_step));
|
||||
|
||||
next = memnew(Button);
|
||||
next->set_flat(true);
|
||||
hbc->add_child(next);
|
||||
next->set_tooltip(TTR("Step Over"));
|
||||
next->set_tooltip_text(TTR("Step Over"));
|
||||
next->set_shortcut(ED_GET_SHORTCUT("debugger/step_over"));
|
||||
next->connect("pressed", callable_mp(this, &ScriptEditorDebugger::debug_next));
|
||||
|
||||
|
|
@ -1738,14 +1738,14 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
|||
dobreak = memnew(Button);
|
||||
dobreak->set_flat(true);
|
||||
hbc->add_child(dobreak);
|
||||
dobreak->set_tooltip(TTR("Break"));
|
||||
dobreak->set_tooltip_text(TTR("Break"));
|
||||
dobreak->set_shortcut(ED_GET_SHORTCUT("debugger/break"));
|
||||
dobreak->connect("pressed", callable_mp(this, &ScriptEditorDebugger::debug_break));
|
||||
|
||||
docontinue = memnew(Button);
|
||||
docontinue->set_flat(true);
|
||||
hbc->add_child(docontinue);
|
||||
docontinue->set_tooltip(TTR("Continue"));
|
||||
docontinue->set_tooltip_text(TTR("Continue"));
|
||||
docontinue->set_shortcut(ED_GET_SHORTCUT("debugger/continue"));
|
||||
docontinue->connect("pressed", callable_mp(this, &ScriptEditorDebugger::debug_continue));
|
||||
|
||||
|
|
@ -1917,7 +1917,7 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
|
|||
vmem_hb->add_child(vmem_refresh);
|
||||
vmem_export = memnew(Button);
|
||||
vmem_export->set_flat(true);
|
||||
vmem_export->set_tooltip(TTR("Export list to a CSV file"));
|
||||
vmem_export->set_tooltip_text(TTR("Export list to a CSV file"));
|
||||
vmem_hb->add_child(vmem_export);
|
||||
vmem_vb->add_child(vmem_hb);
|
||||
vmem_refresh->connect("pressed", callable_mp(this, &ScriptEditorDebugger::_video_mem_request));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue