diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-25 12:39:33 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-12-20 10:25:03 +0100 |
commit | 1c534b5e71d860e91c677c904421d09115e37bfe (patch) | |
tree | 3f639d207c47148521228922926e1b1afe15b4ac | |
parent | 1f6404319e4099a6d137e2e45d386a0a62bd77b6 (diff) | |
download | control-center-1c534b5e71d860e91c677c904421d09115e37bfe.tar control-center-1c534b5e71d860e91c677c904421d09115e37bfe.tar.gz control-center-1c534b5e71d860e91c677c904421d09115e37bfe.tar.bz2 control-center-1c534b5e71d860e91c677c904421d09115e37bfe.tar.xz control-center-1c534b5e71d860e91c677c904421d09115e37bfe.zip |
fix setting bold
fix the following error:
Argument "bold" isn't numeric in subroutine entry at
which is not nice as we rely on hardcoded value...
(PANGO_WEIGHT_BOLD is not available through introspection)
-rwxr-xr-x | control-center | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-center b/control-center index fdd4cb27..deae04d3 100755 --- a/control-center +++ b/control-center @@ -1421,7 +1421,7 @@ sub about_mga_cc() { chomp($contributor); if ($previous_type ne $type) { gtktext_append($credits, [ [ join('', if_($not_first_title, "\n"), translate(common::to_utf8($type)), "\n"), - { 'weight' => 'bold', scale => '1.2' } ] ]); + { 'weight' => 800, scale => '1.2' } ] ]); $previous_type = $type; $not_first_title = 1; } |