Browse Source

Fix expander assignment when force-dragging modules.

tags/v1.1.1
Andrew Belt 5 years ago
parent
commit
266b63d5aa
2 changed files with 3 additions and 0 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +2
    -0
      src/app/RackWidget.cpp

+ 1
- 0
CHANGELOG.md View File

@@ -5,6 +5,7 @@ In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac.
### 1.1.1 (in development) ### 1.1.1 (in development)
- Add auto-updating on Windows when Help > Update VCV Rack is clicked. - Add auto-updating on Windows when Help > Update VCV Rack is clicked.
- Fix filters in open/save dialog box on Windows. - Fix filters in open/save dialog box on Windows.
- Fix expander assignment when force-dragging modules.


### 1.1.0 (2019-06-27) ### 1.1.0 (2019-06-27)
- Request microphone access on Mac to prevent Mac 10.14+ from blocking audio input. - Request microphone access on Mac to prevent Mac 10.14+ from blocking audio input.


+ 2
- 0
src/app/RackWidget.cpp View File

@@ -497,6 +497,8 @@ void RackWidget::setModulePosForce(ModuleWidget *mw, math::Vec pos) {
w->box.pos.x = x; w->box.pos.x = x;
xLimit = x + w->box.size.x; xLimit = x + w->box.size.x;
} }

RackWidget_updateAdjacent(this);
} }


ModuleWidget *RackWidget::getModule(int moduleId) { ModuleWidget *RackWidget::getModule(int moduleId) {


Loading…
Cancel
Save