Skip to content

Commit bef3b39

Browse files
committed
fix a stray Rect
1 parent 3b69715 commit bef3b39

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ flatpak remote-add --if-not-exists \
108108
Install the gtk4 SDK and runtime:
109109

110110
```shell
111-
flatpak install org.gnome.Sdk//47
112-
flatpak install org.gnome.Platform//47
111+
flatpak install org.gnome.Sdk//48
112+
flatpak install org.gnome.Platform//48
113113
```
114114

115115
Allow file. Recent security changes to git will cause submodule checkout

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('nip4', 'c',
22
# ie. a major after nip2 8.9 for workspace save file versioning
3-
version: '9.0.9',
3+
version: '9.0.9-1',
44
license: 'GPL',
55
meson_version: '>=0.64',
66
default_options: [

org.libvips.nip4.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"app-id" : "org.libvips.nip4",
33
"runtime" : "org.gnome.Platform",
4-
"runtime-version" : "47",
4+
"runtime-version" : "48",
55
"sdk" : "org.gnome.Sdk",
66
"command" : "nip4",
77
"finish-args" : [
@@ -334,7 +334,7 @@
334334
{
335335
"type" : "git",
336336
"url" : "https://github.com/jcupitt/nip4.git",
337-
"tag" : "v9.0.5"
337+
"tag" : "v9.0.9"
338338
}
339339
]
340340
}

src/imageui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void imageui_get_mouse_position(Imageui *imageui,
5454
double *image_x, double *image_y);
5555

5656
gboolean imageui_snap_point(Imageui *imageui, int x, int y, int *sx, int *sy);
57-
gboolean imageui_snap_rect( Imageui *imageui, Rect *in, Rect *out );
57+
gboolean imageui_snap_rect(Imageui *imageui, VipsRect *in, VipsRect *out);
5858

5959
Regionview *imageui_pick_regionview(Imageui *imageui, int x, int y);
6060
double imageui_get_zoom(Imageui *imageui);

0 commit comments

Comments
 (0)