Changeset 2980

Show
Ignore:
Timestamp:
04/28/06 07:18:39 (3 years ago)
Author:
madcat
Message:

Hides RSS button when on donkey page.
Renamed plugin page selection button to "Plugins".

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • hydranode/hngui/home_homeactions.ui

    r2942 r2980  
    2525   <item> 
    2626    <widget class="QToolButton" name="pageButton" > 
     27     <property name="minimumSize" > 
     28      <size> 
     29       <width>55</width> 
     30       <height>0</height> 
     31      </size> 
     32     </property> 
    2733     <property name="text" > 
    28       <string>Page</string> 
     34      <string>Overview</string> 
    2935     </property> 
    3036     <property name="autoRaise" > 
  • hydranode/hngui/hometabs.cpp

    r2966 r2980  
    150150                w->show(); 
    151151                m_curPage = w; 
     152                if (name == "Overview") { 
     153                        m_actionBar->rssButton->show(); 
     154                        name = "Plugins"; 
     155                } else { 
     156                        m_actionBar->rssButton->hide(); 
     157                } 
    152158                m_actionBar->pageButton->setText(name); 
    153159        }