Review of default #5664

Consistently use _TOOLTIP suffix for tooltip keys.
This commit is contained in:
Morgan Hardwood
2022-09-23 18:09:44 +02:00
parent 628a573c75
commit cf96139c3a
12 changed files with 27 additions and 27 deletions

View File

@@ -35,7 +35,7 @@ Distortion::Distortion (): FoldableToolPanel(this, "distortion", M("TP_DISTORTIO
autoDistor->set_image (*Gtk::manage (new RTImage ("distortion-auto-small.png")));
autoDistor->get_style_context()->add_class("independent");
autoDistor->set_alignment(0.5f, 0.5f);
autoDistor->set_tooltip_text (M("TP_DISTORTION_AUTO_TIP"));
autoDistor->set_tooltip_text (M("TP_DISTORTION_AUTO_TOOLTIP"));
idConn = autoDistor->signal_pressed().connect( sigc::mem_fun(*this, &Distortion::idPressed) );
autoDistor->show();
pack_start (*autoDistor);