From 5247ac8abd2f1f356592fb3eb931be7b219f0d70 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Wed, 1 Aug 2012 11:54:05 -0400 Subject: [PATCH] Brought back multiple selection in the folder selection outline. It mistakenly went away in the xibless conversion. --- cocoa/base/ui/directory_panel.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cocoa/base/ui/directory_panel.py b/cocoa/base/ui/directory_panel.py index f7a106c7..291ce57a 100644 --- a/cocoa/base/ui/directory_panel.py +++ b/cocoa/base/ui/directory_panel.py @@ -42,6 +42,9 @@ col.editable = True col.autoResizable = False col.dataCell = Popup(None, ["Normal", "Reference", "Excluded"]) col.dataCell.controlSize = const.NSSmallControlSize +directoryOutline.allowsColumnReordering = False +directoryOutline.allowsColumnSelection = False +directoryOutline.allowsMultipleSelection = True for button in (addButton, removeButton): button.width = 28