Skip to content

Commit

Permalink
Hide "Pool View" entry
Browse files Browse the repository at this point in the history
Don't just disable. The view does show not anything anyway.
I'm not sure in what state it is and I also think we already have enough views.
  • Loading branch information
krf committed Apr 5, 2014
1 parent 30afdab commit 557300c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mainwindow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,11 @@ MainWindow::MainWindow( QWidget *parent )
action = m_viewMode->addAction(tr( "&Star View" ));
action->setCheckable(true);
action->setData("star");
#if 0 // Disabled for now, does not work
action = m_viewMode->addAction(tr( "&Pool View" ));
action->setDisabled(true); // FIXME
action->setCheckable(true);
action->setData("pool");
#endif
action = m_viewMode->addAction(tr( "&Gantt View" ));
action->setCheckable(true);
action->setData("gantt");
Expand Down

0 comments on commit 557300c

Please sign in to comment.