Skip to content

Commit

Permalink
Update Compose to 1.6.10-dev1457, IJP 241, and fix Standalone bug (#314)
Browse files Browse the repository at this point in the history
* Update CfD to 1.6.10-dev1457

This includes a crash fix in Skiko that would happen when, on certain
Linux distro/GPU driver combo, OpenGL isn't available.

* Update IJP to 241.14024.14-EAP-SNAPSHOT

* Fix default button focused bg in dark Int UI standalone
  • Loading branch information
rock3r authored Feb 29, 2024
1 parent cb146e8 commit 526ed08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
commonmark = "0.21.0"
composeDesktop = "1.6.0-dev1440"
composeDesktop = "1.6.10-dev1457"
detekt = "1.23.4"
dokka = "1.8.20"
idea = "241.13688.18-EAP-SNAPSHOT"
idea = "241.14024.14-EAP-SNAPSHOT"
ideaGradlePlugin = "1.17.1"
jna = "5.14.0"
kotlin = "1.8.21"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public object IntUiOutlinedButtonColorFactory {
public fun dark(
background: Brush = SolidColor(Color.Transparent),
backgroundDisabled: Brush = SolidColor(IntUiDarkTheme.colors.grey(5)),
backgroundFocused: Brush = SolidColor(IntUiDarkTheme.colors.grey(6)),
backgroundFocused: Brush = background,
backgroundPressed: Brush = SolidColor(IntUiDarkTheme.colors.grey(2)),
backgroundHovered: Brush = SolidColor(Color.Unspecified),
content: Color = IntUiDarkTheme.colors.grey(12),
Expand Down

0 comments on commit 526ed08

Please sign in to comment.