mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:14:58 +00:00
Browser: Set DownloadWidget progress bar minimum value correctly
This fixes a typo from #19462.
This commit is contained in:
parent
1b55ff6f4c
commit
1737a0d1d9
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ DownloadWidget::DownloadWidget(const URL& url)
|
|||
|
||||
m_progressbar = add<GUI::Progressbar>();
|
||||
m_progressbar->set_fixed_height(20);
|
||||
m_progressbar->set_max(0);
|
||||
m_progressbar->set_min(0);
|
||||
m_progressbar->set_max(100);
|
||||
|
||||
m_progress_label = add<GUI::Label>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue