Browse Source

Tweak text

tags/v1.0.0
Andrew Belt 5 years ago
parent
commit
93aca3d4cc
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      .github/ISSUE_TEMPLATE/bug_report.md
  2. +1
    -1
      CHANGELOG.md
  3. +1
    -1
      src/app/ModuleBrowser.cpp

+ 1
- 1
.github/ISSUE_TEMPLATE/bug_report.md View File

@@ -8,7 +8,7 @@ about: Bugs, build errors, compatibility/stability issues
To file a bug report, fill out the form below. To file a bug report, fill out the form below.
Use a descriptive title that best explains the bug in one sentence. Use a descriptive title that best explains the bug in one sentence.
Attach screenshots if the bug is visual. Attach screenshots if the bug is visual.
Attach your `<Rack user dir>/log.txt` file if something is crashing or not loading.
Attach your `<Rack user folder>/log.txt` file if something is crashing or not loading.
Surround terminal output with three tildes Surround terminal output with three tildes
``` ```
like this. like this.


+ 1
- 1
CHANGELOG.md View File

@@ -25,7 +25,7 @@
- Add engine real-time priority setting. - Add engine real-time priority setting.
- Make rack infinite in all four directions. - Make rack infinite in all four directions.
- Add bus board graphic to rack. - Add bus board graphic to rack.
- Add key command Ctrl-- and Ctrl-=, or Ctrl-scroll, for zooming the rack.
- Add key command Ctrl-`-` and Ctrl-`=`, or Ctrl-scroll, for zooming the rack.
- Fix draw order of cable plugs and wires. - Fix draw order of cable plugs and wires.
- Make Gamepad MIDI driver generate MIDI CC instead of MIDI notes for buttons. - Make Gamepad MIDI driver generate MIDI CC instead of MIDI notes for buttons.
- Add Numpad keyboard MIDI device. - Add Numpad keyboard MIDI device.


+ 1
- 1
src/app/ModuleBrowser.cpp View File

@@ -251,7 +251,7 @@ struct ModelBox : widget::OpaqueWidget {
text += "\n" + model->description; text += "\n" + model->description;
// Tags // Tags
if (!model->tags.empty()) { if (!model->tags.empty()) {
text += "\n";
text += "\nTags: ";
for (size_t i = 0; i < model->tags.size(); i++) { for (size_t i = 0; i < model->tags.size(); i++) {
if (i > 0) if (i > 0)
text += ", "; text += ", ";


Loading…
Cancel
Save