added more button callbacks

This commit is contained in:
jp9000
2013-12-10 11:22:33 -07:00
parent 28786349f3
commit c2604baea0
2 changed files with 7 additions and 0 deletions

View File

@@ -65,6 +65,7 @@ void OBSBasic::file_saveOnMenuSelection(wxCommandEvent& event)
void OBSBasic::file_exitOnMenuSelection(wxCommandEvent& event)
{
wxGetApp().ExitMainLoop();
}
void OBSBasic::scenesOnRightDown(wxMouseEvent& event)
@@ -114,3 +115,8 @@ void OBSBasic::sourceUpOnToolClicked(wxCommandEvent& event)
void OBSBasic::sourceDownOnToolClicked(wxCommandEvent& event)
{
}
void OBSBasic::exitButtonOnButtonClick(wxCommandEvent& event)
{
wxGetApp().ExitMainLoop();
}