mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
Merge branch 'master' of github.com:brunoherbelin/vimix
This commit is contained in:
2
Source.h
2
Source.h
@@ -149,7 +149,7 @@ public:
|
||||
bool failed() const override { return origin_ == nullptr; }
|
||||
void accept (Visitor& v) override;
|
||||
|
||||
CloneSource *clone();
|
||||
CloneSource *clone() override;
|
||||
inline Source *origin() const { return origin_; }
|
||||
|
||||
protected:
|
||||
|
||||
@@ -112,7 +112,7 @@ static void ImportFileDialogOpen(char *filename, std::atomic<bool> *success, con
|
||||
return;
|
||||
fileDialogPending_ = true;
|
||||
|
||||
char const * open_pattern[18] = { "*vmx", "*.mp4", "*.mpg", "*.avi", "*.mov", "*.mkv", "*.webm", "*.mod", "*.wmv", "*.mxf", "*.ogg", "*.flv", "*.asf", "*.jpg", "*.png", "*.gif", "*.tif", "*.svg" };
|
||||
char const * open_pattern[18] = { "*.vmx", "*.mp4", "*.mpg", "*.avi", "*.mov", "*.mkv", "*.webm", "*.mod", "*.wmv", "*.mxf", "*.ogg", "*.flv", "*.asf", "*.jpg", "*.png", "*.gif", "*.tif", "*.svg" };
|
||||
char const * open_file_name;
|
||||
|
||||
open_file_name = tinyfd_openFileDialog( "Import a file", path.c_str(), 18, open_pattern, "All supported formats", 0);
|
||||
|
||||
Reference in New Issue
Block a user