Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Mon, 02 May 2016 13:19:26 UTC Commit: 915e8b781c22fc2e8a3a9a3bdae227c89db01296 https://github.com/geany/geany/commit/915e8b781c22fc2e8a3a9a3bdae227c89db012...
Log Message: ----------- GTK: Fix popup font on GTK >= 3.20
X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/ X-Scintilla-Commit-ID: a28863773874af35d3cc8912ae3c028fb0462ea9
Modified Paths: -------------- scintilla/gtk/PlatGTK.cxx
Modified: scintilla/gtk/PlatGTK.cxx 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1456,7 +1456,7 @@ void ListBoxX::SetFont(Font &scint_font) { if (cssProvider) { PangoFontDescription *pfd = PFont(scint_font)->pfd; std::ostringstream ssFontSetting; - ssFontSetting << "GtkTreeView { "; + ssFontSetting << "GtkTreeView, treeview { "; ssFontSetting << "font-family: " << pango_font_description_get_family(pfd) << "; "; ssFontSetting << "font-size:"; ssFontSetting << static_cast<double>(pango_font_description_get_size(pfd)) / PANGO_SCALE;
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).