mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-31 18:37:30 +01:00
Fixed #163.
This commit is contained in:
parent
f811f3252d
commit
e726f3e6f5
@ -68,8 +68,8 @@ project(rssguard)
|
||||
|
||||
set(APP_NAME "RSS Guard")
|
||||
set(APP_LOW_NAME "rssguard")
|
||||
set(APP_VERSION "3.1.0")
|
||||
set(FILE_VERSION "3,1,0,0")
|
||||
set(APP_VERSION "3.1.1")
|
||||
set(FILE_VERSION "3,1,1,0")
|
||||
set(APP_AUTHOR "Martin Rotter")
|
||||
set(APP_URL "http://bitbucket.org/skunkos/rssguard")
|
||||
set(APP_URL_ISSUES "http://bitbucket.org/skunkos/rssguard/issues")
|
||||
|
@ -7,6 +7,13 @@ PLEASE, FILL THIS SURVEY.
|
||||
http://goo.gl/forms/GcvPYgS2a8
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
Fixed:
|
||||
|
||||
▪ Fixed little problem with feed list hiding. (bug #163)
|
||||
|
||||
3.1.0
|
||||
—————
|
||||
|
||||
Added:
|
||||
|
||||
▪ NEW ACCOUNT PLUGIN: OwnCloud News API 1.2 is now supported. Note that the support in this version is experimental and relatively basic. So far only syncing of feeds/messages is supported. Feed/category adding/removing is not yet supported yet. The OwnCloud plugin will be enhanced in future RSS Guard versions.
|
||||
|
@ -159,7 +159,14 @@ void FeedMessageViewer::setListHeadersEnabled(bool enable) {
|
||||
}
|
||||
|
||||
void FeedMessageViewer::switchFeedComponentVisibility() {
|
||||
m_feedsWidget->setVisible(!m_feedsWidget->isVisible());
|
||||
QAction *sen = qobject_cast<QAction*>(sender());
|
||||
|
||||
if (sen != NULL) {
|
||||
m_feedsWidget->setVisible(sen->isChecked());
|
||||
}
|
||||
else {
|
||||
m_feedsWidget->setVisible(!m_feedsWidget->isVisible());
|
||||
}
|
||||
}
|
||||
|
||||
void FeedMessageViewer::toggleShowOnlyUnreadFeeds() {
|
||||
@ -430,7 +437,7 @@ void FeedMessageViewer::showDbCleanupAssistant() {
|
||||
|
||||
void FeedMessageViewer::refreshVisualProperties() {
|
||||
const Qt::ToolButtonStyle button_style = static_cast<Qt::ToolButtonStyle>(qApp->settings()->value(GROUP(GUI),
|
||||
SETTING(GUI::ToolbarStyle)).toInt());
|
||||
SETTING(GUI::ToolbarStyle)).toInt());
|
||||
|
||||
m_toolBarFeeds->setToolButtonStyle(button_style);
|
||||
m_toolBarMessages->setToolButtonStyle(button_style);
|
||||
|
@ -96,7 +96,6 @@ class FeedMessageViewer : public TabContent {
|
||||
private slots:
|
||||
// Called when feed update finishes.
|
||||
void onFeedsUpdateFinished();
|
||||
|
||||
void onFeedsUpdateStarted();
|
||||
|
||||
// Switches visibility of feed list and related
|
||||
|
Loading…
Reference in New Issue
Block a user