Skip to content

Commit

Permalink
Move to JUCE 8.0.2 (#1383)
Browse files Browse the repository at this point in the history
So now conduit, surge, and shortcircuit all at same point
  • Loading branch information
baconpaul authored Sep 28, 2024
1 parent ed9d839 commit 9527011
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion libs/JUCE
Submodule JUCE updated 337 files
2 changes: 1 addition & 1 deletion libs/sst/sst-clap-helpers
6 changes: 3 additions & 3 deletions src-ui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ target_link_libraries(${PROJECT_NAME} PUBLIC
)

if (NOT CMAKE_UNITY_BUILD)
message(STATUS "Includeing Melatonin")
target_link_libraries(${PROJECT_NAME} PUBLIC melatonin_inspector)
target_compile_definitions(${PROJECT_NAME} PUBLIC HAS_MELATONIN_INSPECTOR=1)
#message(STATUS "Includeing Melatonin")
#target_link_libraries(${PROJECT_NAME} PUBLIC melatonin_inspector)
#target_compile_definitions(${PROJECT_NAME} PUBLIC HAS_MELATONIN_INSPECTOR=1)
endif()

target_compile_definitions(${PROJECT_NAME} PRIVATE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ void VariantDisplay::FileInfos::paint(juce::Graphics &g)
int margin{5};
auto ft = editor->themeApplier.interMediumFor(12);

auto w = ft.getStringWidthFloat(msg);
auto w = juce::GlyphArrangement::getStringWidth(ft, msg);
auto bx = getLocalBounds().withWidth(w + 2 * margin).withHeight(18);
g.setColour(editor->themeColor(theme::ColorMap::bg_3).withAlpha(0.5f));
g.fillRect(bx);
Expand Down

0 comments on commit 9527011

Please sign in to comment.