Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lv-tool: Demote actor "lv_analyzer" (related to #207) #256

Merged
merged 2 commits into from
Feb 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions libvisual/tools/lv-tool/lv-tool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

// Defaults
#define DEFAULT_ACTOR_GL "lv_gltest"
#define DEFAULT_ACTOR_NONGL "lv_analyzer"
#define DEFAULT_ACTOR_NONGL "lv_scope"
#define DEFAULT_INPUT "debug"
#define DEFAULT_MORPH "slide_left"
#define DEFAULT_WIDTH 640
Expand All @@ -59,7 +59,8 @@ namespace {

const std::unordered_set<std::string> actors_to_skip {
"gdkpixbuf",
"gstreamer"
"gstreamer",
"lv_analyzer"
};

std::string actor_name;
Expand Down