Skip to content

Commit

Permalink
move history to end of list in info pane
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Nov 21, 2014
1 parent 83e3174 commit e66837e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/gui/qt/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -415,9 +415,9 @@ MainWindow::MainWindow(QApplication &app, QSplashScreen &splash) {
QTabWidget *infoTabs = new QTabWidget(this);
infoTabs->addTab(infoPane, "About");
infoTabs->addTab(coreteamT, "Core Team");
infoTabs->addTab(historyT, "History");
infoTabs->addTab(contributorsT, "Contributors");
infoTabs->addTab(communityT, "Community");
infoTabs->addTab(historyT, "History");
infoTabs->setTabPosition(QTabWidget::South);

QBoxLayout *infoLayout = new QBoxLayout(QBoxLayout::LeftToRight);
Expand Down

0 comments on commit e66837e

Please sign in to comment.