Revision: 14480
          http://sourceforge.net/p/skim-app/code/14480
Author:   hofman
Date:     2024-09-25 09:00:14 +0000 (Wed, 25 Sep 2024)
Log Message:
-----------
larger top margin in preview panel

Modified Paths:
--------------
    trunk/SKPresentationOptionsSheetController.m

Modified: trunk/SKPresentationOptionsSheetController.m
===================================================================
--- trunk/SKPresentationOptionsSheetController.m        2024-09-24 22:42:25 UTC 
(rev 14479)
+++ trunk/SKPresentationOptionsSheetController.m        2024-09-25 09:00:14 UTC 
(rev 14480)
@@ -284,7 +284,7 @@
     
     NSRect rect = [[[self window] screen] frame];
     rect.size.width = round(0.5 * NSWidth(rect)) + 12.0;
-    rect.size.height = round(0.5 * NSHeight(rect)) + 30.0;
+    rect.size.height = round(0.5 * NSHeight(rect)) + 34.0;
     
     if (previewWindow == nil) {
         previewWindow = [[NSPanel alloc] initWithContentRect:rect 
styleMask:NSWindowStyleMaskTitled | NSWindowStyleMaskFullSizeContentView 
backing:NSBackingStoreBuffered defer:NO];
@@ -310,7 +310,7 @@
         NSArray *constraints = @[
             [[bgView leadingAnchor] constraintEqualToAnchor:[contentView 
leadingAnchor] constant:6.0],
             [[contentView trailingAnchor] constraintEqualToAnchor:[bgView 
trailingAnchor] constant:6.0],
-            [[bgView topAnchor] constraintEqualToAnchor:[contentView 
topAnchor] constant:24.0],
+            [[bgView topAnchor] constraintEqualToAnchor:[contentView 
topAnchor] constant:28.0],
             [[contentView bottomAnchor] constraintEqualToAnchor:[bgView 
bottomAnchor] constant:6.0]];
         [NSLayoutConstraint activateConstraints:constraints];
         

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

Reply via email to