Skip to content

Commit

Permalink
UI|Client: Minor tweaks
Browse files Browse the repository at this point in the history
Don't allow starting tutorial in busy mode.
  • Loading branch information
skyjake committed Mar 10, 2014
1 parent c193836 commit 9381265
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/client/src/ui/dialogs/logsettingsdialog.cpp
Expand Up @@ -74,7 +74,7 @@ DENG2_PIMPL(LogSettingsDialog)
App::config()["log.filterBySubsystem"]));

self.area().add(metadata =
new VariableToggleWidget(tr("Show Metadata"),
new VariableToggleWidget(tr("Show Metadata in Log"),
App::config()["log.showMetadata"]));

levels << new ChoiceItem( tr("1 - X.Verbose"), LogEntry::XVerbose)
Expand Down
2 changes: 2 additions & 0 deletions doomsday/client/src/ui/widgets/taskbarwidget.cpp
Expand Up @@ -742,6 +742,8 @@ void TaskBarWidget::connectToServerManually()

void TaskBarWidget::showTutorial()
{
if(BusyMode_Active()) return;

// The widget will dispose of itself when finished.
TutorialWidget *tutorial = new TutorialWidget;
root().addOnTop(tutorial);
Expand Down

0 comments on commit 9381265

Please sign in to comment.