mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
GUI : Added possibility to move the logwindow around in non-debugger mode, fix toolbar size issue, fix changing themes (again...) and added abort button to extract all as well as misc changes.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4281 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -104,25 +104,6 @@ CJitWindow::~CJitWindow()
|
||||
}
|
||||
|
||||
|
||||
void CJitWindow::Save(IniFile& _IniFile) const
|
||||
{
|
||||
_IniFile.Set("JitWindow", "x", GetPosition().x);
|
||||
_IniFile.Set("JitWindow", "y", GetPosition().y);
|
||||
_IniFile.Set("JitWindow", "w", GetSize().GetWidth());
|
||||
_IniFile.Set("JitWindow", "h", GetSize().GetHeight());
|
||||
}
|
||||
|
||||
|
||||
void CJitWindow::Load(IniFile& _IniFile)
|
||||
{
|
||||
int x,y,w,h;
|
||||
_IniFile.Get("JitWindow", "x", &x, GetPosition().x);
|
||||
_IniFile.Get("JitWindow", "y", &y, GetPosition().y);
|
||||
_IniFile.Get("JitWindow", "w", &w, GetSize().GetWidth());
|
||||
_IniFile.Get("JitWindow", "h", &h, GetSize().GetHeight());
|
||||
SetSize(x, y, w, h);
|
||||
}
|
||||
|
||||
void CJitWindow::OnRefresh(wxCommandEvent& /*event*/) {
|
||||
block_list->Update();
|
||||
}
|
||||
|
Reference in New Issue
Block a user