Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save focus level on close #18

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lazy_static = "0.2"
time = "0.1"
hyper = "0.10"
getopts = "0.2"
protobuf = "1.1"
protobuf = "2.2"
rand = "0.3"
libc = "0.2"
regex = "0.1"
Expand Down
9 changes: 9 additions & 0 deletions include/data_model.proto
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,17 @@ message Arrow {
required uint64 to_node = 2;
}

message ViewStackEntry {
required uint64 drawing_id = 1;
required uint64 selected_id = 2;
required uint32 view_y = 3;
}

message Screen {
repeated Node nodes = 1;
required uint64 max_id = 2;
repeated Arrow arrows = 3;
repeated ViewStackEntry view_stack = 4;
optional uint64 drawing_root = 5;
optional uint32 view_y = 6;
}
Loading