trigger_ui: add a hint re: randomness of selections in the Multi-Jump dialog

This commit is contained in:
Ben Loftis 2022-02-19 12:34:45 -06:00
parent ee9e7589ee
commit c7dbfb9961

View File

@ -65,15 +65,20 @@ TriggerJumpDialog::on_trigger_set ()
b->signal_clicked.connect(sigc::bind(sigc::mem_fun(*this, &TriggerJumpDialog::button_clicked), i));
Gtk::Label* l = manage(new Gtk::Label (cue_marker_name(i), ALIGN_RIGHT));
_table.attach (*l, 0, 1, r,r+1, Gtk::FILL, Gtk::SHRINK);
_table.attach (*b, 1, 2, r,r+1, Gtk::FILL, Gtk::SHRINK);
_table.attach (*l, 0, 1, r,r+1, Gtk::FILL, Gtk::FILL);
_table.attach (*b, 1, 2, r,r+1, Gtk::FILL|EXPAND, Gtk::FILL);
_buttonlist.push_back(b);
++r;
}
get_vbox()->pack_start (_table);
get_vbox()->pack_start (_table, false, false, 4);
Gtk::Label *label = manage (new Gtk::Label(_("Enabling multiple slots will result\n"
"in an equal random probability of\n"
"the selected slots being launched."), ALIGN_CENTER));
get_vbox()->pack_start (*label, false, false, 4);
PropertyChange pc;
pc.add (Properties::name);