diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-04 20:16:56 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-04 20:19:13 +0200 |
commit | 1ca1a7aa9935ad33325ac7aebbbb127995337988 (patch) | |
tree | 74efb6646568c2e5c1ac3575b1fca008b942679a | |
parent | 4113d9664c60d004474dfc1cffbcd7dc50fa6dc4 (diff) |
limit polynomial degree in the dialog, related fdo#46100
Change-Id: If49db1a503548103dcf605cc1c2d8064cdd2d5b2
-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 73438f8317fc..2e5e51e61f8c 100644 --- a/chart2/source/controller/dialogs/tp_ChartType.src +++ b/chart2/source/controller/dialogs/tp_ChartType.src @@ -244,11 +244,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 |