fix options menu crash

This commit is contained in:
jacob1 2018-04-20 22:24:29 -04:00
parent e5230b5b9f
commit ba362c1ab7
2 changed files with 0 additions and 5 deletions

View File

@ -228,10 +228,6 @@ OptionsView::OptionsView():
AddComponent(tempLabel);
AddComponent(showAvatars);
tempLabel = new ui::Label(ui::Point(showAvatars->Position.X+showAvatars->Size.X+3, depthTextbox->Position.Y), ui::Point(Size.X-28, 16), "\bg- Change the depth of the 3D anaglyph effect");
tempLabel->Appearance.HorizontalAlign = ui::Appearance::AlignLeft; tempLabel->Appearance.VerticalAlign = ui::Appearance::AlignMiddle;
AddComponent(tempLabel);
class DataFolderAction: public ui::ButtonAction
{
public:

View File

@ -23,7 +23,6 @@ class OptionsView: public ui::Window {
ui::Checkbox * fullscreen;
ui::Checkbox * fastquit;
ui::Checkbox * showAvatars;
ui::Textbox * depthTextbox;
public:
OptionsView();
void NotifySettingsChanged(OptionsModel * sender);