summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphBox.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-07-17 11:01:54 -0400
committerDavid Robillard <d@drobilla.net>2024-07-17 11:47:19 -0400
commit973db12fe33bab8e6efca80deca358b4998d5eb2 (patch)
tree6ae279e5edccdde1ebaf6de9aa4a2706b0a8ec4f /src/gui/GraphBox.cpp
parente2bbec54b3b26173284754b786310fc7d8589ecc (diff)
downloadingen-973db12fe33bab8e6efca80deca358b4998d5eb2.tar.gz
ingen-973db12fe33bab8e6efca80deca358b4998d5eb2.tar.bz2
ingen-973db12fe33bab8e6efca80deca358b4998d5eb2.zip
Remove redundant casts
Diffstat (limited to 'src/gui/GraphBox.cpp')
-rw-r--r--src/gui/GraphBox.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/GraphBox.cpp b/src/gui/GraphBox.cpp
index 9efba2ee..2de4fa33 100644
--- a/src/gui/GraphBox.cpp
+++ b/src/gui/GraphBox.cpp
@@ -931,8 +931,7 @@ GraphBox::event_animate_signals_toggled()
_app->interface()->set_property(
URI("ingen:/clients/this"),
_app->uris().ingen_broadcast,
- _app->forge().make(
- static_cast<bool>(_menu_animate_signals->get_active())));
+ _app->forge().make(_menu_animate_signals->get_active()));
}
void