diff --git a/retroshare-gui/src/gui/ChannelFeed.cpp b/retroshare-gui/src/gui/ChannelFeed.cpp index 35ec5b36d..21f4e52ad 100644 --- a/retroshare-gui/src/gui/ChannelFeed.cpp +++ b/retroshare-gui/src/gui/ChannelFeed.cpp @@ -488,14 +488,14 @@ void ChannelFeed::updateChannelMsgs() if (ci.channelFlags & RS_DISTRIB_PUBLISH) { postButton->setEnabled(true); - actionsetAllAsRead->setEnabled(false); + actionEnable_Auto_Download->setEnabled(false); } else { postButton->setEnabled(false); } if(!(ci.channelFlags & RS_DISTRIB_PUBLISH) && (ci.channelFlags & RS_DISTRIB_SUBSCRIBED)) - actionsetAllAsRead->setEnabled(true); + actionEnable_Auto_Download->setEnabled(true); std::list msgs; diff --git a/retroshare-gui/src/gui/ChannelFeed.ui b/retroshare-gui/src/gui/ChannelFeed.ui index cc83b9e15..9d88dd6ac 100644 --- a/retroshare-gui/src/gui/ChannelFeed.ui +++ b/retroshare-gui/src/gui/ChannelFeed.ui @@ -432,7 +432,24 @@ border-image: url(:/images/btn_26_pressed.png) 4; Post to Channel - + QToolButton, QPushButton, QComboBox { +border-image: url(:/images/btn_26.png) 4; +border-width: 4; +padding: 0px 6px; +font-size: 12px; +} + +QToolButton:hover, QPushButton:hover, QComboBox:hover { +border-image: url(:/images/btn_26_hover.png) 4; +} + +QToolButton:disabled, QPushButton:disabled, QComboBox::disabled { +color:gray; +} + +QToolButton:pressed, QPushButton:pressed{ +border-image: url(:/images/btn_26_pressed.png) 4; +}