// cjm 2024-01-17 17:32:45 // Effectively just copied from IntStr & EditInt64 above but changed types to uint64 fn IntStr64(x) { return x == :IntNull || x < :DblNullLim ? "" : to_string(x); // :IntNull, :DblNullLimit ??? } ctrl EditUint64 { group "Input fields"; >EditNotNull; uint64 Min; uint64 Max; PaintData(w) { PaintMinMax(w, "Uint64", IntStr64(.Min), IntStr64(.Max)); } // Note function name change } // cjm 2024-01-17 17:32:45
Report message to a moderator