diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-02-12 17:25:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 17:25:20 +0100 |
commit | 8b77dac56e375698cdd28bc6033d076c600a5a19 (patch) | |
tree | 8032da1952e77794399f0798b78c2b3a7529373b /editor | |
parent | 385ab23672499b90338ac96f172986c09b128f66 (diff) | |
parent | 5634f627dabe510de86c3ae81987fc39772701b7 (diff) |
Merge pull request #25827 from merumelu/audio-bus-tooltip
EditorAudioBuses: Fix wrong tooltip for "Add Bus"
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_audio_buses.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_audio_buses.cpp b/editor/editor_audio_buses.cpp index 6593eb8f03..f5cbc3861a 100644 --- a/editor/editor_audio_buses.cpp +++ b/editor/editor_audio_buses.cpp @@ -1165,7 +1165,7 @@ EditorAudioBuses::EditorAudioBuses() { add = memnew(Button); top_hb->add_child(add); add->set_text(TTR("Add Bus")); - add->set_tooltip(TTR("Create a new Bus Layout.")); + add->set_tooltip(TTR("Add a new Audio Bus to this layout.")); add->connect("pressed", this, "_add_bus"); |