mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:07:35 +00:00
LibGUI: Rename AbstractSlider::on_value_changed => on_change
This matches other similar hook names.
This commit is contained in:
parent
3b445bc66a
commit
cb67264f61
11 changed files with 21 additions and 21 deletions
|
@ -122,7 +122,7 @@ GUI::Widget* BucketTool::get_properties_widget()
|
|||
threshold_slider.set_fixed_height(20);
|
||||
threshold_slider.set_range(0, 100);
|
||||
threshold_slider.set_value(m_threshold);
|
||||
threshold_slider.on_value_changed = [this](int value) {
|
||||
threshold_slider.on_change = [this](int value) {
|
||||
m_threshold = value;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue