Skip to content

Commit

Permalink
small change
Browse files Browse the repository at this point in the history
  • Loading branch information
isivisi committed Nov 27, 2023
1 parent acda194 commit 75847c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/greenscreen.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ <h1 class="display-1 fw-bold">Greenscreen</h1>

<h3>Context Menu</h3>
<p><span class="fw-bold">Toggle Text</span> The display text can be toggled if you want to hide it from view. (this makes the module very hard to find, you can use the select tool to see it more easily)</p>
<p><span class="fw-bold">Toggle Shadow</span> Toggles the modules default vcvrack shadow effect</p>
<p><span class="fw-bold">Toggle VCV Shadow</span> Toggles the modules default vcvrack shadow effect</p>
<p><span class="fw-bold">Toggle Rack</span> Toggles the ability to display the rack visuals on top of the color background</p>
<p><span class="fw-bold">Box Shadow</span> offset values for a box'ish shadow that makes it look like your rack is in a case</p>

<p class="alert alert-warning"><span class="fw-bold">Note:</span> The <span class="fw-bold">Toggle Shadow</span> menu item is <span class="fw-bold">NOT</span> related to the <span class="fw-bold">Box Shadow</span></p>
<p class="alert alert-warning"><span class="fw-bold">Note:</span> The <span class="fw-bold">Toggle VCV Shadow</span> menu item is <span class="fw-bold">NOT</span> related to the <span class="fw-bold">Box Shadow</span></p>

<div style="min-height: 200px"></div> <!-- Spacer -->

Expand All @@ -88,7 +88,7 @@ <h3>Custom Colors</h3>

<div style="min-height: 0px"></div> <!-- Spacer -->
</div>
</div>
</div>

</div>

Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"slug": "questionablemodules",
"name": "Questionable Modules",
"version": "2.1.13",
"version": "2.1.14",
"minRackVersion": "2.4.0",
"license": "GPL-3.0-or-later",
"brand": "Questionable Modules",
Expand Down
2 changes: 1 addition & 1 deletion src/greenscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ struct GreenscreenWidget : QuestionableWidget {
mod->showInputs = !mod->showInputs;
}));

menu->addChild(createMenuItem("Toggle Shadow", mod->hasShadow ? "On" : "Off",[=]() {
menu->addChild(createMenuItem("Toggle VCV Shadow", mod->hasShadow ? "On" : "Off",[=]() {
mod->hasShadow = !mod->hasShadow;
}));

Expand Down

0 comments on commit 75847c2

Please sign in to comment.