Changeset 1fc66eda83b0d8932f61f050928095fa04ee05cb

Show
Ignore:
Timestamp:
03/01/04 11:55:07 (5 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1073127307 +0000
git-parent:

[db294cb081d257ad1c8766ac22ddcf2a857bf42b]

git-author:
Gildas Bazin <gbazin@videolan.org> 1073127307 +0000
Message:

* modules/gui/wxwindows/interface.cpp: fixed and re-enabled aspect-ratio combobox in the extended gui.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/wxwindows/interface.cpp

    r565e66c r1fc66ed  
    33 ***************************************************************************** 
    44 * Copyright (C) 2000-2001, 2003 VideoLAN 
    5  * $Id: interface.cpp,v 1.81 2003/12/31 10:30:44 zorglub Exp $ 
     5 * $Id: interface.cpp,v 1.82 2004/01/03 10:55:07 gbazin Exp $ 
    66 * 
    77 * Authors: Gildas Bazin <gbazin@netcourrier.com> 
     
    171171    EVT_CHECKBOX( Adjust_Event, Interface::OnEnableAdjust) 
    172172 
    173     EVT_COMBOBOX( Ratio_Event, Interface::OnRatio) 
     173    EVT_TEXT( Ratio_Event, Interface::OnRatio) 
    174174    EVT_CHECKBOX( Visual_Event, Interface::OnEnableVisual) 
    175175 
     
    555555    extra_sizer->Add(adjust_sizer,1,wxBOTTOM,5); 
    556556 
    557 #if 0 
    558557    /* Create sizer to surround the other controls */ 
    559558    wxBoxSizer *other_sizer = new wxBoxSizer( wxVERTICAL ); 
     
    589588    video_sizer->Layout(); 
    590589 
     590#if 0 
    591591    wxBoxSizer *visual_sizer = new wxBoxSizer( wxHORIZONTAL ); 
    592592 
     
    607607    audio_sizer->Layout(); 
    608608 
     609    other_sizer->Add( audio_sizer , 0 , wxALL | wxEXPAND , 0 ); 
     610#endif 
    609611    other_sizer->Add( video_sizer, 0, wxALL | wxEXPAND , 0); 
    610     other_sizer->Add( audio_sizer , 0 , wxALL | wxEXPAND , 0 ); 
    611612    other_sizer->Layout(); 
    612613 
    613614    extra_sizer->Add(other_sizer,0,wxBOTTOM,5); 
    614 #endif 
    615615 
    616616    extra_frame->SetSizer( extra_sizer );