diff options
| author | Jeff Carr <[email protected]> | 2025-02-21 15:38:25 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-21 15:38:25 -0600 |
| commit | 7098d3d2e44caab69aa856109329782cc6477d73 (patch) | |
| tree | cdb6ba31b016c6ecb2d9a7524400a5e49560282f | |
| parent | da17ecbc1bb0738e20010559f13291256ae33b21 (diff) | |
switch to using a parentv0.0.5
| -rw-r--r-- | table.proto | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/table.proto b/table.proto index f9b355b..6f30432 100644 --- a/table.proto +++ b/table.proto @@ -27,19 +27,20 @@ message TimeRow { } message BoolRow { - Widget header = 1; // - repeated Widget widgets = 2; // + Widget header = 1; + repeated Widget widgets = 2; } message Table { // `autogenpb:marshal` string title = 1; - Widget window = 2; // - Widget grid = 3; // + Widget parent = 2; + Widget grid = 3; repeated string order = 4; repeated StringRow StringRows = 5; repeated IntRow IntRows = 6; repeated TimeRow TimeRows = 7; repeated BoolRow BoolRows = 8; + Widget window = 9; // deprecate this } message Tables { // `autogenpb:marshal` |
