summaryrefslogtreecommitdiff
path: root/src/ui/inputwidget.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-25 18:25:40 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-25 18:25:51 +0300
commitf53e6d34fbb8d2f2fb54aff8b746b1c5d06fe497 (patch)
treec8cbe09db582b66262dd6472bd55be7b485fdf66 /src/ui/inputwidget.h
parent54d38100bb49a34f9ad11570e0144dc1ec006858 (diff)
Removed Symbola, replaced with other/new fonts
Symbola's license is not permissive enough, so it has been removed. Added "Smol Emoji" with face emoticons and other UI characters for Lagrange. More symbols provided by Noto Sans Symbols and Noto Sans Symbols 2. The fallback fonts are now Iosevka, which has a pretty good coverage (although monospace), and the user's chosen TrueType font (which could still be a local copy of Symbola). Still a work in progress: some characters are missing. IssueID #283
Diffstat (limited to 'src/ui/inputwidget.h')
-rw-r--r--src/ui/inputwidget.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/inputwidget.h b/src/ui/inputwidget.h
index cb32a29c..5c39aae0 100644
--- a/src/ui/inputwidget.h
+++ b/src/ui/inputwidget.h
@@ -63,6 +63,11 @@ void setNotifyEdits_InputWidget (iInputWidget *, iBool notifyEdits);
63void setEatEscape_InputWidget (iInputWidget *, iBool eatEscape); 63void setEatEscape_InputWidget (iInputWidget *, iBool eatEscape);
64 64
65const iString * text_InputWidget (const iInputWidget *); 65const iString * text_InputWidget (const iInputWidget *);
66
67iLocalDef const char *cstrText_InputWidget(const iInputWidget *d) {
68 return cstr_String(text_InputWidget(d));
69}
70
66iInputWidgetContentPadding 71iInputWidgetContentPadding
67 contentPadding_InputWidget (const iInputWidget *); 72 contentPadding_InputWidget (const iInputWidget *);
68 73