mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 08:16:16 -07:00
Fix possible filter list height problem
This commit is contained in:
parent
a8978b2ae4
commit
51bc67042e
1 changed files with 4 additions and 3 deletions
|
@ -237,9 +237,6 @@ MainWindow::MainWindow(QWidget *parent, QStringList torrentCmdLine) : QMainWindo
|
|||
readSettings();
|
||||
properties->readSettings();
|
||||
|
||||
// Limit status filters list height
|
||||
transferListFilters->getStatusFilters()->updateHeight();
|
||||
|
||||
if(!ui_locked) {
|
||||
if(pref.startMinimized())
|
||||
showMinimized();
|
||||
|
@ -676,6 +673,10 @@ void MainWindow::on_actionAbout_triggered() {
|
|||
|
||||
void MainWindow::showEvent(QShowEvent *e) {
|
||||
qDebug("** Show Event **");
|
||||
|
||||
// Update status filters list height
|
||||
transferListFilters->getStatusFilters()->updateHeight();
|
||||
|
||||
if(getCurrentTabWidget() == transferList) {
|
||||
properties->loadDynamicData();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue