mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Save and load the line wrap option of the log window from ini.
Add Portuguese translation to the windows build. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7198 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -67,12 +67,13 @@ private:
|
||||
ConsoleListener *m_console;
|
||||
LogManager *m_LogManager;
|
||||
std::queue<std::pair<u8, wxString> > msgQueue;
|
||||
bool m_writeFile, m_writeConsole, m_writeWindow, m_LogAccess;
|
||||
bool m_writeFile, m_writeConsole, m_writeWindow, m_LogAccess, m_bWrapLines;
|
||||
|
||||
// Controls
|
||||
wxBoxSizer *sBottom;
|
||||
wxTextCtrl *m_Log, *m_cmdline;
|
||||
wxChoice * m_FontChoice;
|
||||
wxChoice *m_FontChoice;
|
||||
wxCheckBox *m_WrapLine;
|
||||
|
||||
Common::CriticalSection m_LogSection;
|
||||
|
||||
@ -88,6 +89,7 @@ private:
|
||||
void OnSubmit(wxCommandEvent& event);
|
||||
void OnFontChange(wxCommandEvent& event);
|
||||
void OnWrapLineCheck(wxCommandEvent& event);
|
||||
void ToggleWrapLine(bool word_wrap);
|
||||
void OnClear(wxCommandEvent& event);
|
||||
void OnLogTimer(wxTimerEvent& WXUNUSED(event));
|
||||
void UpdateLog();
|
||||
|
Reference in New Issue
Block a user