File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed
Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -188,18 +188,13 @@ void PlugDataAudioProcessor::initialiseFilesystem()
188188 library.createDirectory ();
189189 }
190190
191- /*
192- else if(library.getChildFile("Deken").isDirectory() &&
193- #if JUCE_WINDOWS
194- !std::filesystem::is_symlink(library.getChildFile("Deken").getFullPathName().toStdString())
195- #else
196-
197- !library.getChildFile("Deken").isSymbolicLink()
198- #endif
199- ){
191+ #if !JUCE_WINDOWS
192+ // This may not work on Windows, Windows users REALLY need to thrash their PlugData folder
193+ else if (library.getChildFile (" Deken" ).isDirectory () && !library.getChildFile (" Deken" ).isSymbolicLink ()) {
200194 library.moveFileTo (library_backup);
201195 library.createDirectory ();
202- } */
196+ }
197+ #endif
203198
204199 deken.createDirectory ();
205200
Original file line number Diff line number Diff line change @@ -222,6 +222,8 @@ class SuggestionComponent : public Component
222222 } else if (port->getViewPositionY () + port->getMaximumVisibleHeight () < but->getY () + but->getHeight ()) {
223223 port->setViewPosition (0 , but->getY () - (but->getHeight () * 4 ));
224224 }
225+
226+ repaint ();
225227 }
226228
227229 TextEditor* openedEditor = nullptr ;
You can’t perform that action at this time.
0 commit comments