You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For me #1333 is only partially solved: size of main-window is ok now, but not the size of the settings-window (I also cannot reproduce the bug described in #1335).
My settings in config.ini:
settings_window_size=@SiZe(1008 474) - the window is too narrow with 4.6.6.
Resizing is ignored with next start of rssguard or close and reopen of the settings-window.
Reverting only the lines with 'SettingsWindowInitialSize' in commit e48677b solved the issue for me:
src/librssguard/gui/dialogs/formsettings.cpp:
62 + resize(qApp->settings()->value(GROUP(GUI), GUI::SettingsWindowInitialSize, size()).toSize());
125 + qApp->settings()->setValue(GROUP(GUI), GUI::SettingsWindowInitialSize, size());
src/librssguard/miscellaneous/settings.cpp:
281 + DKEY GUI::SettingsWindowInitialSize = "settings_window_size";
295 + KEY SettingsWindowInitialSize;
How to reproduce the bug?
change settings regarding size of settings_window
or resize settings-window, close the window and reopen
restart rssguard
What was the expected result?
Manually changed size of settings-window is not reset.
What actually happened?
rssguard always starts the settings-window with fixed size.
Debug log
none
Operating system and version
OS: Arch Linux 64-bit - xfce4-desktop
RSS Guard version: 4.6.6
The text was updated successfully, but these errors were encountered:
Now the solution is universal and it remembers size for all dialogs inside RSS Guard! As for dialogs' positions - I much prefer to have all modal dialogs display on the center of its parent main window or on the center of the "screen" if the dialog is just too big. This was fixed too.
As for dialogs' positions - I much prefer to have all modal dialogs display on the center of its parent main window or on the center of the "screen" ...>
That is also fine for me.
Thanks again for the quick fix and your great program!
Brief description of the issue
For me #1333 is only partially solved: size of main-window is ok now, but not the size of the settings-window (I also cannot reproduce the bug described in #1335).
My settings in config.ini:
settings_window_size=@SiZe(1008 474) - the window is too narrow with 4.6.6.
Resizing is ignored with next start of rssguard or close and reopen of the settings-window.
Reverting only the lines with 'SettingsWindowInitialSize' in commit e48677b solved the issue for me:
src/librssguard/gui/dialogs/formsettings.cpp:
62 + resize(qApp->settings()->value(GROUP(GUI), GUI::SettingsWindowInitialSize, size()).toSize());
125 + qApp->settings()->setValue(GROUP(GUI), GUI::SettingsWindowInitialSize, size());
src/librssguard/miscellaneous/settings.cpp:
281 + DKEY GUI::SettingsWindowInitialSize = "settings_window_size";
295 + KEY SettingsWindowInitialSize;
How to reproduce the bug?
What was the expected result?
Manually changed size of settings-window is not reset.
What actually happened?
rssguard always starts the settings-window with fixed size.
Debug log
none
Operating system and version
The text was updated successfully, but these errors were encountered: