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");