Skip to content

Commit 051466e

Browse files
authored
Merge pull request #54 from Dimethoxy/development
fix: adjust image width for oscilloscope rendering
2 parents fe68887 + f425db9 commit 051466e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dmt/gui/widget/Oscilloscope.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ class alignas(64) Oscilloscope : public juce::Thread
264264
}
265265
#else
266266
for (auto& image : images) {
267-
image = Image(PixelFormat::ARGB, _width, _height, true);
267+
image = Image(PixelFormat::ARGB, _width + 10, _height, true);
268268
}
269269
#endif
270270

0 commit comments

Comments
 (0)