We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f0d93c commit e6f05a5Copy full SHA for e6f05a5
1 file changed
libvisual/tools/lv-tool/lv-tool.cpp
@@ -388,6 +388,13 @@ namespace {
388
new_name = cycler (nullptr);
389
}
390
391
+ // Always skip actors that are of little interest to end users,
392
+ // while allowing explicit "--actor (gdkpixbuf|gstreamer)".
393
+ if (strcmp (new_name, "gdkpixbuf") == 0 \
394
+ || strcmp (new_name, "gstreamer") == 0) {
395
+ return cycle_actor_name (new_name, dir);
396
+ }
397
+
398
// FIXME: this won't work if an actor's name is used as part of
399
// another actor's name
400
if (exclude_actors.find (new_name) != std::string::npos) {
0 commit comments