From 93aca3d4ccea5b446e5b9323e0ab698627f30d1f Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 17 Jun 2019 22:52:41 -0400 Subject: [PATCH] Tweak text --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- CHANGELOG.md | 2 +- src/app/ModuleBrowser.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 1dd301d5..c7e79231 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -8,7 +8,7 @@ about: Bugs, build errors, compatibility/stability issues To file a bug report, fill out the form below. Use a descriptive title that best explains the bug in one sentence. Attach screenshots if the bug is visual. -Attach your `/log.txt` file if something is crashing or not loading. +Attach your `/log.txt` file if something is crashing or not loading. Surround terminal output with three tildes ``` like this. diff --git a/CHANGELOG.md b/CHANGELOG.md index 66ce42bd..8789ac34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ - Add engine real-time priority setting. - Make rack infinite in all four directions. - 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. - Make Gamepad MIDI driver generate MIDI CC instead of MIDI notes for buttons. - Add Numpad keyboard MIDI device. diff --git a/src/app/ModuleBrowser.cpp b/src/app/ModuleBrowser.cpp index 10df3a70..31d0922e 100644 --- a/src/app/ModuleBrowser.cpp +++ b/src/app/ModuleBrowser.cpp @@ -251,7 +251,7 @@ struct ModelBox : widget::OpaqueWidget { text += "\n" + model->description; // Tags if (!model->tags.empty()) { - text += "\n"; + text += "\nTags: "; for (size_t i = 0; i < model->tags.size(); i++) { if (i > 0) text += ", ";