Changeset 3928


Ignore:
Timestamp:
Sep 16, 2013, 12:20:13 PM (11 years ago)
Author:
ldelgass
Message:

Relax string length limits on axis titles

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/vtkvis/RendererCmd.cpp

    r3861 r3928  
    13171317{
    13181318    const char *title = Tcl_GetString(objv[3]);
    1319     if (strlen(title) > 30) {
     1319    if (strlen(title) > 60) {
    13201320        Tcl_AppendResult(interp, "axis name \"", title,
    13211321                         "\" is too long", (char*)NULL);
     
    16011601{
    16021602    const char *units = Tcl_GetString(objv[3]);
    1603     if (strlen(units) > 10) {
     1603    if (strlen(units) > 20) {
    16041604        Tcl_AppendResult(interp, "axis units name \"", units,
    16051605                         "\" is too long", (char*)NULL);
Note: See TracChangeset for help on using the changeset viewer.