Skip to content

Commit

Permalink
Fixed|UI|Client: Crash in the VR settings dialog
Browse files Browse the repository at this point in the history
The "Apply Desktop Settings" button was not being created.
  • Loading branch information
skyjake committed Aug 23, 2014
1 parent 5c24b1b commit 6cab0f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doomsday/client/src/ui/dialogs/vrsettingsdialog.cpp
Expand Up @@ -81,11 +81,11 @@ DENG_GUI_PIMPL(VRSettingsDialog)
area.add(riftSetup = new ButtonWidget);
riftSetup->setText(tr("Apply Rift Settings"));
riftSetup->setAction(new SignalAction(thisPublic, SLOT(autoConfigForOculusRift())));

area.add(desktopSetup = new ButtonWidget);
desktopSetup->setText(tr("Apply Desktop Settings"));
desktopSetup->setAction(new SignalAction(thisPublic, SLOT(autoConfigForDesktop())));
}

area.add(desktopSetup = new ButtonWidget);
desktopSetup->setText(tr("Apply Desktop Settings"));
desktopSetup->setAction(new SignalAction(thisPublic, SLOT(autoConfigForDesktop())));
}

void fetch()
Expand Down

0 comments on commit 6cab0f6

Please sign in to comment.