mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
16 lines
308 B
Text
16 lines
308 B
Text
ctrl SqlArray {
|
|
group "Complex";
|
|
>ArrayCtrl;
|
|
}
|
|
|
|
ctrl SqlOption {
|
|
group "Push";
|
|
>Option;
|
|
GetStdSize() { sz = GetMinSize(); sz.cx *= 8; sz.cy = max(16, sz.cy); return sz; }
|
|
}
|
|
|
|
ctrl SqlNOption {
|
|
group "Push";
|
|
>Option;
|
|
GetStdSize() { sz = GetMinSize(); sz.cx *= 8; sz.cy = max(16, sz.cy); return sz; }
|
|
}
|