diff options
author | Justin Clark-Casey (justincc) | 2014-03-06 00:40:24 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-03-06 00:40:24 +0000 |
commit | aa2fb1ec250bab4dde750b29ca2fec4d69add506 (patch) | |
tree | 6b1c7f6e589e6f0892d165138fe2bceefd6d29a5 /OpenSim/Framework | |
parent | Prevent adding a land object if it overlaps any existing objects that have no... (diff) | |
download | opensim-SC-aa2fb1ec250bab4dde750b29ca2fec4d69add506.zip opensim-SC-aa2fb1ec250bab4dde750b29ca2fec4d69add506.tar.gz opensim-SC-aa2fb1ec250bab4dde750b29ca2fec4d69add506.tar.bz2 opensim-SC-aa2fb1ec250bab4dde750b29ca2fec4d69add506.tar.xz |
minor: Increase size of parcel name field in "land show" console command output. Construct table using CDT rather than string formats
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Console/ConsoleDisplayUtil.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/ConsoleDisplayUtil.cs b/OpenSim/Framework/Console/ConsoleDisplayUtil.cs index b65fd75..6417663 100644 --- a/OpenSim/Framework/Console/ConsoleDisplayUtil.cs +++ b/OpenSim/Framework/Console/ConsoleDisplayUtil.cs | |||
@@ -35,9 +35,14 @@ namespace OpenSim.Framework.Console | |||
35 | public static class ConsoleDisplayUtil | 35 | public static class ConsoleDisplayUtil |
36 | { | 36 | { |
37 | public const int CoordTupleSize = 11; | 37 | public const int CoordTupleSize = 11; |
38 | public const int EstateNameSize = 20; | ||
39 | public const int PortSize = 5; | 38 | public const int PortSize = 5; |
39 | |||
40 | public const int EstateNameSize = 20; | ||
41 | public const int ParcelNameSize = 40; | ||
40 | public const int RegionNameSize = 20; | 42 | public const int RegionNameSize = 20; |
43 | public const int UserNameSize = 35; | ||
44 | |||
41 | public const int UuidSize = 36; | 45 | public const int UuidSize = 36; |
46 | public const int VectorSize = 15; | ||
42 | } | 47 | } |
43 | } \ No newline at end of file | 48 | } \ No newline at end of file |