Files
GDevelop/IDE/MainOptions.cpp
T
Florian dd44cdb04c Moved "General" ribbon to a separated "File" menu.
Added a custom Help button to the ribbon.
Minor changes according to changes coming in GDL.

git-svn-id: svn://localhost@624 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-01-08 21:00:32 +00:00

23 lines
584 B
C++

#include "Game_Develop_EditorMain.h"
#include "Preferences.h"
#include "wx/aui/aui.h"
////////////////////////////////////////////////////////////
/// Accéder aux préférences
////////////////////////////////////////////////////////////
void Game_Develop_EditorFrame::OnMenuPrefSelected( wxCommandEvent& event )
{
Preferences Dialog( this );
Dialog.ShowModal();
LoadSkin(&m_mgr, editorsNotebook);
LoadSkin(m_ribbon);
PrepareAutosave();
UpdateNotebook();
RealizeRibbonCustomButtons();
m_ribbon->Realize();
m_mgr.Update();
}