summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/about/version.gmi5
-rw-r--r--src/macos.m2
2 files changed, 6 insertions, 1 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index dace03a4..f95e0846 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -6,6 +6,11 @@
6``` 6```
7# Release notes 7# Release notes
8 8
9## 1.7.2
10* Fixed regressions in text selection, for example when marking text leftwards from the start position or when starting from outside any text run.
11* Fixed a crash when clicking on Outline sidebar items before a page has finished loading.
12* Gopher: Handle the `p` line type (PNG image).
13
9## 1.7.1 14## 1.7.1
10* Fixed feed entries forgetting their (un)read status after several months. 15* Fixed feed entries forgetting their (un)read status after several months.
11* Fixed feed entries being discarded before they are removed from their source feed, causing them to reappear on the next refresh. 16* Fixed feed entries being discarded before they are removed from their source feed, causing them to reappear on the next refresh.
diff --git a/src/macos.m b/src/macos.m
index d4b160fe..784a8612 100644
--- a/src/macos.m
+++ b/src/macos.m
@@ -570,7 +570,7 @@ static NSMenuItem *makeMenuItems_(NSMenu *menu, MenuCommands *commands, const iM
570 deinit_String(&itemTitle); 570 deinit_String(&itemTitle);
571 [item setTarget:commands]; 571 [item setTarget:commands];
572 if (isChecked) { 572 if (isChecked) {
573#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_13 573#if defined (__MAC_10_13)
574 [item setState:NSControlStateValueOn]; 574 [item setState:NSControlStateValueOn];
575#else 575#else
576 [item setState:NSOnState]; 576 [item setState:NSOnState];