diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-15 22:39:15 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-17 11:33:16 -0500 |
commit | 009b7be7c8a6033e2e93b07214e4545eeeda734a (patch) | |
tree | f841db350f96faeadba2e3ab3a0afad8f4a581ab /svtools | |
parent | 225509026fcae28600ce8f72dbf97dce0a740ffa (diff) |
Revise the line patterns further. Now they look satisfactory to my eye.
Change-Id: I27f4e11bceac25c10de28a866bdcec9576027582
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/ctrlbox.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/control/ctrlbox.cxx b/svtools/source/control/ctrlbox.cxx index a6e545d24691..80de8e560b17 100644 --- a/svtools/source/control/ctrlbox.cxx +++ b/svtools/source/control/ctrlbox.cxx @@ -596,12 +596,12 @@ std::vector<double> GetDashing( sal_uInt16 nDashing ) aPattern.push_back( 2.0 ); // blank break; case table::BorderLineStyle::DASHED: - aPattern.push_back( 9.0 ); - aPattern.push_back( 3.0 ); + aPattern.push_back( 16.0 ); // line + aPattern.push_back( 5.0 ); // blank break; case table::BorderLineStyle::FINE_DASHED: - aPattern.push_back( 3.0 ); - aPattern.push_back( 2.0 ); + aPattern.push_back( 6.0 ); // line + aPattern.push_back( 2.0 ); // blank break; default: ; |