site_archiver@lists.apple.com Delivered-To: Cocoa-dev@lists.apple.com Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=frameforge.com; s=hostingermail-a; t=1662672845; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=cfQ65G9pTpTSboKqxk298BBM9fYmDTex8ynCEckcjwA=; b=L11ePNQgDV2qJAefanPsRTSe13fZt59PONDghOdeIysoAp4vCZ1zAbNbsrFa0meMzAVa43 erbDx+EctAehzYLxYtJBQPvnTnhzodiOyn6qyFIW1jwtM++TZBIXIQ38sjyGxKgbCVMfRI a3/NBa4wsAiAx9BUVkYNKzjXD1aoQ10FiYavRPaw1J4chFG+I7TkbYcnXK5zN7lOVzTBeA oRvmO8L7Fwamh84/8qc1/a9zfG/LsxFlodqgkZtn9E6V4ErQIZ+IA72nQNIZMNznXfKO7l 18Cnv2FMPIbRwuGlb6E/0JRs1pQV4gaFdlmXToEFnUV2F5k/ad/XucbsvD/GJA== User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.2.1 _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/site_archiver%40lists.appl... This email sent to site_archiver@lists.apple.com I have an editable text view and a combo box that I want to lay out horizontally in a split view. The regular size of a combo box defaults to 25 points high, while the regular size of an edit field defaults to 21 points high. But NSSplitView with horizontal layout sets its subviews to the same height, so either the combo box gets cramped or the edit field gets unnaturally expanded. The nib editor does not let me change the field heights at that point, nor can I add auto layout constraints that would change the heights. I could insert the edit field in a custom NSView and insert that in the split view, but I'm wondering if there is a better way to handle the issue?