mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Changed default LogFrame position.
This commit is contained in:
parent
49295f8eff
commit
268e2eee4c
3 changed files with 6 additions and 7 deletions
|
@ -173,8 +173,9 @@ BEGIN_EVENT_TABLE(LogFrame, FrameBase)
|
|||
EVT_CLOSE(LogFrame::OnQuit)
|
||||
END_EVENT_TABLE()
|
||||
|
||||
LogFrame::LogFrame()
|
||||
: FrameBase(nullptr, wxID_ANY, "Log Frame", "LogFrame", wxSize(600, 500))
|
||||
LogFrame::LogFrame(wxWindow *parent)
|
||||
: FrameBase(nullptr, wxID_ANY, "Log Frame", "LogFrame", wxSize(600, 500),
|
||||
wxPoint(parent->GetPosition().x + parent->GetSize().x, parent->GetPosition().y))
|
||||
, ThreadBase("LogThread")
|
||||
, m_log(*new wxListView(this))
|
||||
{
|
||||
|
@ -183,6 +184,7 @@ LogFrame::LogFrame()
|
|||
wxMenu* menu_log_settings = new wxMenu();
|
||||
menubar->Append(menu_log_settings, "Settings");
|
||||
menu_log_settings->Append(id_log_level, "Log Level");
|
||||
|
||||
SetMenuBar(menubar);
|
||||
|
||||
//events
|
||||
|
@ -274,8 +276,6 @@ void LogFrame::Settings(wxCommandEvent& WXUNUSED(event))
|
|||
}
|
||||
|
||||
wxDialog diag(this, wxID_ANY, "Settings", wxDefaultPosition);
|
||||
static const u32 height = 400;
|
||||
static const u32 width = 385;
|
||||
|
||||
wxStaticBoxSizer* s_round_log_level = new wxStaticBoxSizer(wxVERTICAL, &diag, _("Log Level"));
|
||||
wxBoxSizer* s_panel = new wxBoxSizer(wxVERTICAL);
|
||||
|
|
|
@ -23,7 +23,6 @@ public:
|
|||
return;
|
||||
|
||||
std::string frmt = fmt::Format(fmt, std::forward<Arg>(args)...);
|
||||
|
||||
WriteToLog("!", frmt, 2);
|
||||
}
|
||||
|
||||
|
@ -67,7 +66,7 @@ class LogFrame
|
|||
wxListView& m_log;
|
||||
|
||||
public:
|
||||
LogFrame();
|
||||
LogFrame(wxWindow *parent);
|
||||
~LogFrame();
|
||||
|
||||
bool Close(bool force = false);
|
||||
|
|
|
@ -103,7 +103,7 @@ MainFrame::MainFrame()
|
|||
// Panels
|
||||
m_game_viewer = new GameViewer(this);
|
||||
m_debugger_frame = new DebuggerPanel(this);
|
||||
ConLogFrame = new LogFrame;
|
||||
ConLogFrame = new LogFrame(this);
|
||||
|
||||
AddPane(m_game_viewer, "Game List", wxAUI_DOCK_BOTTOM);
|
||||
AddPane(m_debugger_frame, "Debugger", wxAUI_DOCK_RIGHT);
|
||||
|
|
Loading…
Add table
Reference in a new issue