mirror of https://github.com/odrling/Aegisub
Remove some lingering unused automation things in frame_main
Originally committed to SVN as r5637.
This commit is contained in:
parent
f970508e67
commit
af9315f1aa
|
@ -83,7 +83,6 @@
|
||||||
enum {
|
enum {
|
||||||
ID_APP_TIMER_AUTOSAVE = 12001,
|
ID_APP_TIMER_AUTOSAVE = 12001,
|
||||||
ID_APP_TIMER_STATUSCLEAR = 12002,
|
ID_APP_TIMER_STATUSCLEAR = 12002,
|
||||||
ID_MENU_AUTOMATION_MACRO = 13006,
|
|
||||||
ID_SASH_MAIN_AUDIO = 14001
|
ID_SASH_MAIN_AUDIO = 14001
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -669,7 +668,6 @@ void FrameMain::OnSubtitlesOpen() {
|
||||||
wxString curSubsVFR = DecodeRelativePath(context->ass->GetScriptInfo("VFR File"),context->ass->filename);
|
wxString curSubsVFR = DecodeRelativePath(context->ass->GetScriptInfo("VFR File"),context->ass->filename);
|
||||||
wxString curSubsKeyframes = DecodeRelativePath(context->ass->GetScriptInfo("Keyframes File"),context->ass->filename);
|
wxString curSubsKeyframes = DecodeRelativePath(context->ass->GetScriptInfo("Keyframes File"),context->ass->filename);
|
||||||
wxString curSubsAudio = DecodeRelativePath(context->ass->GetScriptInfo("Audio URI"),context->ass->filename);
|
wxString curSubsAudio = DecodeRelativePath(context->ass->GetScriptInfo("Audio URI"),context->ass->filename);
|
||||||
wxString AutoScriptString = context->ass->GetScriptInfo("Automation Scripts");
|
|
||||||
|
|
||||||
// Check if there is anything to change
|
// Check if there is anything to change
|
||||||
int autoLoadMode = OPT_GET("App/Auto/Load Linked Files")->GetInt();
|
int autoLoadMode = OPT_GET("App/Auto/Load Linked Files")->GetInt();
|
||||||
|
|
|
@ -64,7 +64,6 @@ class VideoSlider;
|
||||||
class VideoZoomSlider;
|
class VideoZoomSlider;
|
||||||
|
|
||||||
namespace agi { struct Context; class OptionValue; }
|
namespace agi { struct Context; class OptionValue; }
|
||||||
namespace Automation4 { class FeatureMacro; class ScriptManager; }
|
|
||||||
|
|
||||||
/// DOCME
|
/// DOCME
|
||||||
/// @class FrameMain
|
/// @class FrameMain
|
||||||
|
@ -92,9 +91,6 @@ class FrameMain: public wxFrame {
|
||||||
bool blockVideoLoad;
|
bool blockVideoLoad;
|
||||||
|
|
||||||
wxPanel *Panel;
|
wxPanel *Panel;
|
||||||
std::vector<Automation4::FeatureMacro*> activeMacroItems;
|
|
||||||
|
|
||||||
int AddMacroMenuItems(wxMenu *menu, const std::vector<Automation4::FeatureMacro*> ¯os);
|
|
||||||
|
|
||||||
void InitToolbar();
|
void InitToolbar();
|
||||||
void InitContents();
|
void InitContents();
|
||||||
|
|
Loading…
Reference in New Issue