Revision: 16247
http://sourceforge.net/p/skim-app/code/16247
Author: hofman
Date: 2026-05-08 09:28:24 +0000 (Fri, 08 May 2026)
Log Message:
-----------
check selection rather than clicked row for table doubleclick action, as it is
also called for Enter
Modified Paths:
--------------
trunk/SKMainWindowController_Actions.m
trunk/SKMainWindowController_UI.m
Modified: trunk/SKMainWindowController_Actions.m
===================================================================
--- trunk/SKMainWindowController_Actions.m 2026-05-07 21:09:32 UTC (rev
16246)
+++ trunk/SKMainWindowController_Actions.m 2026-05-08 09:28:24 UTC (rev
16247)
@@ -249,7 +249,7 @@
}
- (void)goToSelectedFindResults:(id)sender {
- if ([sender clickedRow] != -1)
+ if ([sender numberOfSelectedRows] > 0)
[self selectSearchResultHighlight:NSDirectSelection];
}
Modified: trunk/SKMainWindowController_UI.m
===================================================================
--- trunk/SKMainWindowController_UI.m 2026-05-07 21:09:32 UTC (rev 16246)
+++ trunk/SKMainWindowController_UI.m 2026-05-08 09:28:24 UTC (rev 16247)
@@ -997,6 +997,7 @@
}
- (void)outlineViewColumnDidResize:(NSNotification *)notification{
+
if (mwcFlags.autoResizeNoteRows && [[notification object]
isEqual:rightSideController.noteOutlineView] &&
[(SKScrollView *)[rightSideController.noteOutlineView
enclosingScrollView] isResizingSubviews] == NO)
[rightSideController.noteOutlineView
performSelectorOnce:@selector(resetRowHeightsAnimating) afterDelay:0.0];
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit