diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-04 20:16:56 +0200 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-10-06 13:21:12 -0400 |
commit | e935aab070404d318d5fa2eee4bfbd1184b8d080 (patch) | |
tree | 8e8ae0a5a555ceeea1e853423c1ef7c21dc4486f | |
parent | 9dd2c8ec4992516f0e6b3e4a98eda89ab8abc579 (diff) |
limit polynomial degree in the dialog, related fdo#46100
Change-Id: If49db1a503548103dcf605cc1c2d8064cdd2d5b2
Signed-off-by: Kohei Yoshida <kohei.yoshida@gmail.com>
-rw-r--r-- | chart2/source/controller/dialogs/tp_ChartType.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/dialogs/tp_ChartType.src b/chart2/source/controller/dialogs/tp_ChartType.src index 049ef897f795..0f4966aff14d 100644 --- a/chart2/source/controller/dialogs/tp_ChartType.src +++ b/chart2/source/controller/dialogs/tp_ChartType.src @@ -257,11 +257,11 @@ ModalDialog DLG_SPLINE_PROPERTIES Repeat = TRUE ; Spin = TRUE ; Minimum = 1 ; - Maximum = 100 ; + Maximum = 15 ; StrictFormat = TRUE ; Unit = FUNIT_CUSTOM ; First = 1 ; - Last = 100 ; + Last = 15 ; SpinSize = 1 ; }; FixedLine FL_SPLINE_DIALOGBUTTONS |