From 12abad900e711acda65e90ff5f80cb96e1b9fdba Mon Sep 17 00:00:00 2001 From: Daniel Kornhauser Eisenberg Date: Thu, 13 Nov 2003 21:48:45 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/gtk-sharp/; revision=19965 --- sample/GtkDemo/DemoTextView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample/GtkDemo/DemoTextView.cs b/sample/GtkDemo/DemoTextView.cs index 5a2a063c6..76f32be13 100644 --- a/sample/GtkDemo/DemoTextView.cs +++ b/sample/GtkDemo/DemoTextView.cs @@ -151,11 +151,11 @@ namespace GtkDemo buffer.TagTable.Add(tag); tag = new TextTag("xx-small"); - tag.Scale = 15 * Pango.Scale.XX_Small; + tag.Scale = Pango.Scale.XX_Small; buffer.TagTable.Add(tag); tag = new TextTag("x-large"); - tag.Scale = 15 * Pango.Scale.X_Large; + tag.Scale = Pango.Scale.X_Large; buffer.TagTable.Add(tag); tag = new TextTag("monospace");