mirror of https://github.com/odrling/Aegisub
Fix initial state of AudioTimingControllerDialogue
It should not be in alt-dragging mode by default. Fix TypesettingTools/Aegisub#32
This commit is contained in:
parent
5dfa94d22d
commit
e4f0a9a510
|
@ -324,8 +324,8 @@ class AudioTimingControllerDialogue final : public AudioTimingController {
|
|||
/// The owning project context
|
||||
agi::Context *context;
|
||||
|
||||
/// The time which was clicked on for alt-dragging mode
|
||||
int clicked_ms;
|
||||
/// The time which was clicked on for alt-dragging mode, or INT_MIN if not in alt-draging mode
|
||||
int clicked_ms = INT_MIN;
|
||||
|
||||
/// Autocommit option
|
||||
const agi::OptionValue *auto_commit = OPT_GET("Audio/Auto/Commit");
|
||||
|
|
Loading…
Reference in New Issue