mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-15 09:01:12 +01:00
Bug1342: Loop-play (and other things) before scrub (and other things)...
... should not disable auto-scrolling of the window during playback.
This commit is contained in:
@@ -117,10 +117,10 @@ extern AProjectArray gAudacityProjects;
|
||||
|
||||
WX_DEFINE_ARRAY(wxMenu *, MenuArray);
|
||||
|
||||
enum PlayMode {
|
||||
enum class PlayMode : int {
|
||||
normalPlay,
|
||||
oneSecondPlay,
|
||||
loopedPlay
|
||||
oneSecondPlay, // Disables auto-scrolling
|
||||
loopedPlay // Disables auto-scrolling
|
||||
};
|
||||
|
||||
enum StatusBarField {
|
||||
@@ -494,7 +494,7 @@ public:
|
||||
|
||||
void WriteXMLHeader(XMLWriter &xmlFile);
|
||||
|
||||
PlayMode mLastPlayMode{ normalPlay };
|
||||
PlayMode mLastPlayMode{ PlayMode::normalPlay };
|
||||
ViewInfo mViewInfo;
|
||||
|
||||
// Audio IO callback methods
|
||||
|
||||
Reference in New Issue
Block a user