Skip to content

Commit

Permalink
Thunder: Mark as deprecated explicitly in its UI
Browse files Browse the repository at this point in the history
Fixes #66.
  • Loading branch information
yupferris committed Jul 26, 2021
1 parent 3c28e93 commit b7f0bb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Vsts/Thunder/ThunderEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ HACMDRIVERID ThunderEditor::driverId = NULL;
WAVEFORMATEX *ThunderEditor::foundWaveFormat = nullptr;

ThunderEditor::ThunderEditor(AudioEffect *audioEffect)
: VstEditor(audioEffect, 140, 80, "THUNDER")
: VstEditor(audioEffect, 280, 80, "THUNDER (DEPRECATED)")
{
pressedTheFuck = false;

Expand Down
2 changes: 1 addition & 1 deletion WaveSabreVstLib/src/VstEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ namespace WaveSabreVstLib
frame = new CFrame(size, ptr, this);

frame->setBackground(ImageManager::Get(ImageManager::ImageIds::Background));
addTextLabel(LeftMargin, TitleTopMargin, 200, BaseSize, title);
addTextLabel(LeftMargin, TitleTopMargin, 300, BaseSize, title);

currentX = LeftMargin;
currentY = TitleAreaHeight;
Expand Down

0 comments on commit b7f0bb2

Please sign in to comment.