From 009b7be7c8a6033e2e93b07214e4545eeeda734a Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Wed, 15 Jan 2014 22:39:15 -0500 Subject: Revise the line patterns further. Now they look satisfactory to my eye. Change-Id: I27f4e11bceac25c10de28a866bdcec9576027582 --- svtools/source/control/ctrlbox.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'svtools') 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 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: ; -- cgit