diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG
index d8e887bbc..85f73d58b 100644
--- a/resources/text/CHANGELOG
+++ b/resources/text/CHANGELOG
@@ -1,49 +1,84 @@
-[1.9.9.7]
+1.9.9.7
+
+Fixed:
-- [#] Custom counts of messages in feed list (issue #14).
-- [~] Message list optimizations.
-- [+] Feed list categories expand status is now persistent.
-- [+] System-wide external web browser can now be used.
-- [#] All datetimes fetched from feeds are now considered to be UTC.
-- [~] Tweaked "check for updates" dialog.
+- All datetimes fetched from feeds are now considered to be UTC.
-[1.9.9.6]
+Added:
-- [~] Localization handling.
-- [+] "Copy selection" context menu item for internal web browser.
-- [#] Feed type saved to database when feed is added.
-- [~] Default feeds.
-- [#] Restarting of application on all platforms.
-- [+] Initial French, Portuguese, German localizations. THANKS to theirs authors!!!
-- [#] Bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.
-
-[1.9.9.5]
-
-- [#] Mac OS X support missing.
-- [#] Virtual desktop change hides main window.
-- [#] Misleding external browser settings.
-- [#] Non-functional external browser shortcuts.
-- [#] Saving of webbrowser progressbar color.
-- [~] Usability of some GUI elements.
-- [@] Completely switched to new website.
-- [+] Some missing shortcuts.
-
-[1.9.9.4]
-
-- [+] Experimental MySQL backend support.
-- [+] Feed metadata fetching.
-- [+] Changeable toolbar button style.
-- [~] Other major features tweaked, many bugs fixed.
-
-[1.9.9.3]
-
-- [@] Alpha pre-release for testing purposes.
+- Custom counts of messages in feed list (issue #14) are now changeable.
+- Feed list categories expand status is now persistent.
+- System-wide external web browser can now be used.
+- Switchable (with user-defined keyboard shortcut) main menu.
+- Added better changelog.
+
+
+Changed:
+
+- Message list optimizations done.
+- "Check for updates" dialog tweaked.
+
+
+
+1.9.9.6
+
+Fixed:
+
+- Restarting of application on all platforms fixed.
+- Feed type saved correctly to database when feed is added.
+- Fixed bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.
+
+
+Added:
+
+- Added initial French, Portuguese, German localizations. THANKS to theirs authors!!!
+- "Copy selection" context menu item for internal web browser added.
+
+
+Changed:
+
+- Localization handling improved.
+- Default feed list improved.
+
+
+
+1.9.9.5
+
+Fixed:
+
+- Mac OS X support missing.
+- Virtual desktop change hides main window.
+- Misleding external browser settings.
+- Non-functional external browser shortcuts.
+- Saving of webbrowser progressbar color.
+
+
+Added:
+
+- Some missing keyboard shortcuts.
+
+
+Changed:
+
+- Completely switched to new website.
+- Usability of some GUI elements improved.
+
+
+
+1.9.9.4
+
+Added:
+
+- Experimental MySQL backend support.
+- Feed metadata fetching is available.
+- Changeable toolbar button style via application settings.
+
+
+Changed:
+
+- Other major features tweaked, many bugs fixed.
-[+] added
-[#] fixed
-[~] changed
-[@] other action
diff --git a/resources/text/UPDATES b/resources/text/UPDATES
index 1e1cfa754..6f91c6a91 100644
--- a/resources/text/UPDATES
+++ b/resources/text/UPDATES
@@ -4,18 +4,24 @@
https://bitbucket.org/skunkos/rssguard/downloads/rssguard-1.9.9.6-os2.7z
https://bitbucket.org/skunkos/rssguard/downloads/rssguard-1.9.9.6-win32.7z
-
+Restarting of application on all platforms fixed.
+Feed type saved correctly to database when feed is added.
+Fixed bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.
+
-[+] added
-[#] fixed
-[~] changed
-[@] other action]]>
+Added:
+
+- Added initial French, Portuguese, German localizations. THANKS to theirs authors!!!
+- "Copy selection" context menu item for internal web browser added.
+
+
+Changed:
+
+- Localization handling improved.
+- Default feed list improved.
+
]]>
\ No newline at end of file
diff --git a/src/gui/formmain.cpp b/src/gui/formmain.cpp
index f92655994..eaea0c32f 100755
--- a/src/gui/formmain.cpp
+++ b/src/gui/formmain.cpp
@@ -324,7 +324,7 @@ void FormMain::loadSize() {
}
// Hide the main menu if user wants it.
- if (!settings->value(APP_CFG_GUI, "main_menu_visible", true).toBool()) {
+ if (!(m_mainMenuActivated = settings->value(APP_CFG_GUI, "main_menu_visible", true).toBool())) {
m_ui->m_menuBar->setVisible(false);
}