diff --git a/gtk/MakeDialog.cc b/gtk/MakeDialog.cc index 1d112a579..3d0aea21e 100644 --- a/gtk/MakeDialog.cc +++ b/gtk/MakeDialog.cc @@ -403,8 +403,8 @@ void MakeDialog::Impl::updatePiecesLabel() void MakeDialog::Impl::configurePieceSizeScale(uint32_t piece_size) { - // the below lower & upper bounds would allow piece size selection between approx 1KiB - 64MiB - auto adjustment = Gtk::Adjustment::create(log2(piece_size), 10, 26, 1.0, 1.0); + // the below lower & upper bounds would allow piece size selection between approx 16KiB - 256MiB + auto adjustment = Gtk::Adjustment::create(log2(piece_size), 14, 28, 1.0, 1.0); piece_size_scale_->set_adjustment(adjustment); piece_size_scale_->set_visible(true); }