Files
GDevelop/IDE/MainOptions.cpp
T
Florian 38d0a132ae Upgraded SFML2.
Minor changes for linux.
Added Radiance skin.

git-svn-id: svn://localhost@511 8062f311-0dae-4547-b526-b8ab9ac864a5
2011-08-25 16:26:29 +00:00

22 lines
549 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();
m_ribbon->Realize();
m_mgr.Update();
}