diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2013-05-02 09:46:17 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2013-05-02 09:46:17 +1000 |
commit | 689638d1e56d14d052fbb48048e03b8c361e5a67 (patch) | |
tree | edd2cba36f3065aa7c45863f209f663ae31ef702 /cocoa/ScintillaTest/AppController.mm | |
parent | feeb0152926363ab76b13d850b47528f879b864d (diff) | |
download | scintilla-mirror-689638d1e56d14d052fbb48048e03b8c361e5a67.tar.gz |
Feature: [feature-requests:#988]. Cocoa support for font quality.
From Mark Yen.
Diffstat (limited to 'cocoa/ScintillaTest/AppController.mm')
-rw-r--r-- | cocoa/ScintillaTest/AppController.mm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cocoa/ScintillaTest/AppController.mm b/cocoa/ScintillaTest/AppController.mm index c28974109..168a67681 100644 --- a/cocoa/ScintillaTest/AppController.mm +++ b/cocoa/ScintillaTest/AppController.mm @@ -271,6 +271,11 @@ static const char * box_xpm[] = { [self showAutocompletion]; } +-(IBAction) setFontQuality: (id) sender +{ + [ScintillaView directCall:mEditor message:SCI_SETFONTQUALITY wParam:[sender tag] lParam:0]; +} + @end //-------------------------------------------------------------------------------------------------- |