summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-10-24 20:58:09 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2016-10-24 20:58:09 +0200
commit12b474041a65d95d6959731d97127b1848eaea8b (patch)
tree061a211218dfd8ba3bfd3624f8ed09cb471bbae7
parent736e4e752bd95e39749b97968443f3781600f578 (diff)
Fix graphical glitch in inline progressbar.
-rw-r--r--plugin/drumgizmo_plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/drumgizmo_plugin.cc b/plugin/drumgizmo_plugin.cc
index e63bdfd..091492f 100644
--- a/plugin/drumgizmo_plugin.cc
+++ b/plugin/drumgizmo_plugin.cc
@@ -218,7 +218,7 @@ void DrumGizmoPlugin::onInlineRedraw(std::size_t width,
InlineCanvas canvas(context);
GUI::Painter painter(canvas);
painter.clear();
- painter.drawImage(0, 1, box);
+ painter.drawImage(0, 0, box);
double progress =
(double)settingsGetter.number_of_files_loaded.getValue() /