Skip to content

Commit 3b69715

Browse files
committed
get ready for 9.0.9
1 parent f2cde20 commit 3b69715

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
## master
22

3+
## 9.0.9 2025/05/28
4+
5+
- fix select modifier handling
6+
- add region resize and drag snap
7+
- add hguide and vguide regions
8+
- improve menu homing
9+
- improve antialias on zoom out
10+
- add region context menu
11+
312
## 9.0.8 2025/04/23
413

514
- fix ctrl/shift detect on windows

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.8-2',
3+
version: '9.0.9',
44
license: 'GPL',
55
meson_version: '>=0.64',
66
default_options: [

src/row.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1806,16 +1806,6 @@ row_deselect(Row *row)
18061806
ws->selected = g_slist_remove(ws->selected, row);
18071807
row->selected = FALSE;
18081808

1809-
/* Hack: if this is a matrix with selected cells, deselect the matrix
1810-
* sellection too. We should really have a row method for this I
1811-
* guess :-( See also workspace_selected_names_sub().
1812-
if (row->child_rhs && row->child_rhs->graphic &&
1813-
IS_MATRIX(row->child_rhs->graphic) &&
1814-
MATRIX(row->child_rhs->graphic)->selected)
1815-
matrix_deselect(MATRIX(row->child_rhs->graphic));
1816-
*/
1817-
printf("row_deselect: FIXME ... call matrix_deselect()\n");
1818-
18191809
iobject_changed(IOBJECT(row));
18201810
iobject_changed(IOBJECT(ws));
18211811

0 commit comments

Comments
 (0)