[gnome-shell] introspection: Fix use of pango_font_description_from_string()
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] introspection: Fix use of pango_font_description_from_string()
- Date: Wed, 8 Sep 2010 14:05:21 +0000 (UTC)
commit 177a136adc7b41daa9ced7fdd3d587909e8a1f20
Author: Florian Müllner <fmuellner gnome org>
Date: Wed Sep 8 15:35:33 2010 +0200
introspection: Fix use of pango_font_description_from_string()
js/ui/lookingGlass.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js
index 19059da..19b8f19 100644
--- a/js/ui/lookingGlass.js
+++ b/js/ui/lookingGlass.js
@@ -782,7 +782,7 @@ LookingGlass.prototype = {
let fontName = gconf.get_string('/desktop/gnome/interface/monospace_font_name');
// This is mishandled by the scanner - should by Pango.FontDescription_from_string(fontName);
// https://bugzilla.gnome.org/show_bug.cgi?id=595889
- let fontDesc = Pango.Font.description_from_string(fontName);
+ let fontDesc = Pango.font_description_from_string(fontName);
// We ignore everything but size and style; you'd be crazy to set your system-wide
// monospace font to be bold/oblique/etc. Could easily be added here.
this.actor.style =
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]