mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
Fix RSS panel position not saved
This commit is contained in:
@@ -635,11 +635,11 @@ void RSSImp::saveSlidersPosition()
|
||||
void RSSImp::restoreSlidersPosition()
|
||||
{
|
||||
const Preferences* const pref = Preferences::instance();
|
||||
QByteArray pos_h = pref->getRssHSplitterState();
|
||||
if (!pos_h.isNull())
|
||||
const QByteArray pos_h = pref->getRssHSplitterState();
|
||||
if (!pos_h.isEmpty())
|
||||
splitter_h->restoreState(pos_h);
|
||||
QByteArray pos_v = pref->getRssVSplitterState();
|
||||
if (!pos_v.isNull())
|
||||
const QByteArray pos_v = pref->getRssVSplitterState();
|
||||
if (!pos_v.isEmpty())
|
||||
splitter_v->restoreState(pos_v);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user