diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-15 21:16:28 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-15 21:16:28 -0400 |
| commit | 82101036b8b2686ec0394908434629ab6a0b9903 (patch) | |
| tree | 4e917386d700b810c10336f149496370c80fecb5 /listbox_darwin.m | |
| parent | 999b553e39f8470425b76651c579ae0de42ee375 (diff) | |
Removed the control font code from bleh_darwin.m and rewrote it in Objective-C in sysdata_darwin.m.
Diffstat (limited to 'listbox_darwin.m')
| -rw-r--r-- | listbox_darwin.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/listbox_darwin.m b/listbox_darwin.m index 0a5ba97..60cc25e 100644 --- a/listbox_darwin.m +++ b/listbox_darwin.m @@ -85,8 +85,8 @@ id makeListboxTableColumn(id identifier) [column setEditable:NO]; // to set the font for each item, we set the font of the "data cell", which is more aptly called the "cell template" dataCell = [column dataCell]; - // TODO pull the one from sysdata_darwin.m - objc_setFont(dataCell, NSRegularControlSize); + // technically not a NSControl, but still accepts the selector, so we can call it anyway + applyStandardControlFont(dataCell); [column setDataCell:dataCell]; // TODO other properties? return column; |
