Skip to content

Commit 2261f56

Browse files
committed
doc(images): update matcher screenshots
1 parent 6798ad9 commit 2261f56

File tree

10 files changed

+8
-2
lines changed

10 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Create and validate regular expressions easily, anywhere.
99
</p>
1010

1111
<p align="center">
12-
<img src="images/desktop/linux_dark.png" alt="NeoRegex desktop app"/>
12+
<img src="images/desktop/linux_matcher_dark.png" alt="NeoRegex desktop app"/>
1313
</p>
1414

1515
<p align="center">

core/datasource/src/desktopMain/kotlin/com/neoutils/neoregex/core/datasource/settings/WindowStateSettings.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ package com.neoutils.neoregex.core.datasource.settings
2020

2121
import com.neoutils.neoregex.core.datasource.WindowStateDataSource
2222
import com.neoutils.neoregex.core.datasource.model.WindowStateData
23+
import com.neoutils.neoregex.core.datasource.model.WindowStateData.Size
2324
import com.russhwolf.settings.ExperimentalSettingsApi
2425
import com.russhwolf.settings.ObservableSettings
2526
import com.russhwolf.settings.PreferencesSettings
@@ -51,7 +52,12 @@ internal class WindowStateSettings(
5152
val windowState = block(flow.value)
5253

5354
settings.encodeValue(WindowStateData.serializer(), KEY, windowState)
54-
_flow.value = windowState
55+
_flow.value = windowState.copy(
56+
size = Size(
57+
width = 800,
58+
height = 600
59+
)
60+
)
5561

5662
return windowState
5763
}

images/android/api_31_dark.png

-318 KB
Binary file not shown.

images/android/api_31_light.png

-291 KB
Binary file not shown.
143 KB
Loading
141 KB
Loading

images/desktop/linux_dark.png

-23.6 KB
Binary file not shown.

images/desktop/linux_light.png

-21.1 KB
Binary file not shown.

images/desktop/linux_matcher_dark.png

23 KB
Loading
24 KB
Loading

0 commit comments

Comments
 (0)