diff options
| author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2026-08-25 13:21:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-25 13:21:03 -0400 |
| commit | f6f5cd0f888dd8ec53821aa4f26e307b51465da0 (patch) | |
| tree | addb875c9bc2b217d39d7d6fd4e4e0a5ea333745 /indra/llwindow/llwindowmacosx.cpp | |
| parent | 82caf452cdaa59357a25d0844afe0012419beed2 (diff) | |
| parent | 2e9c387fee881022aec13d5c85f901539683c18f (diff) | |
Merge pull request #3537 from secondlife/project/lua_editor
Alpha Viewer: Lua editor
Diffstat (limited to 'indra/llwindow/llwindowmacosx.cpp')
| -rw-r--r-- | indra/llwindow/llwindowmacosx.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 1dd795cd3a..7cb681aefe 100644 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -2633,6 +2633,12 @@ std::vector<std::string> LLWindowMacOSX::getDynamicFallbackFontList() return std::vector<std::string>(); } +LLFontFallbackMatch LLWindowMacOSX::findFallbackFontForChar(llwchar wch) +{ + // Not implemented on macOS; would use CoreText (CTFontCreateForString). + return LLFontFallbackMatch(); +} + // static MASK LLWindowMacOSX::modifiersToMask(S16 modifiers) { |
