summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk3.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-11-06 14:26:59 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-11-24 23:28:13 +0100
commit04a9d2b3139a6709aee4b9bc2debf047308a408c (patch)
tree4766ddfcc65d26ac5b93a75a3cf4b73de8d070d1 /perl-install/ugtk3.pm
parent35f9c81c361e8f1856a457d087d26670878c2c6e (diff)
downloaddrakx-04a9d2b3139a6709aee4b9bc2debf047308a408c.tar
drakx-04a9d2b3139a6709aee4b9bc2debf047308a408c.tar.gz
drakx-04a9d2b3139a6709aee4b9bc2debf047308a408c.tar.bz2
drakx-04a9d2b3139a6709aee4b9bc2debf047308a408c.tar.xz
drakx-04a9d2b3139a6709aee4b9bc2debf047308a408c.zip
we no longuer have access to PANGO_SCALE_* with introspection
Diffstat (limited to 'perl-install/ugtk3.pm')
-rw-r--r--perl-install/ugtk3.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm
index 6b3c6a1e0..4be3b3c15 100644
--- a/perl-install/ugtk3.pm
+++ b/perl-install/ugtk3.pm
@@ -312,7 +312,7 @@ sub markup_to_TextView_format {
if ($attrs) {
$attrs->{weight} eq 'bold' and $attrs->{weight} = Pango->PANGO_WEIGHT_BOLD;
$attrs->{size} eq 'larger' and do {
- $attrs->{scale} = Pango->scale_x_large; # equivalent to Label's size => 'larger'
+ $attrs->{scale} = 1.4399999999999; # PANGO_SCALE_X_LARGE: equivalent to Label's size => 'larger'
delete $attrs->{size};
};
}