Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
World
Design Tooling
Contrast
Commits
fd7aeac9
Commit
fd7aeac9
authored
Aug 06, 2019
by
Bilal Elmoussaoui
Browse files
reduce default window size & spacing btw elements
parent
bbc217cf
Pipeline
#102226
passed with stages
in 28 minutes and 32 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/window.rs
View file @
fd7aeac9
...
...
@@ -144,8 +144,8 @@ impl Window {
entries_container.show();
self.headerbar.set_custom_title(Some(&entries_container));
container.pack_start(&self.preview.borrow().widget, true, true, 2
4
);
container.pack_start(&self.levelbar.borrow().widget, true, true, 2
4
);
container.pack_start(&self.preview.borrow().widget, true, true,
1
2);
container.pack_start(&self.levelbar.borrow().widget, true, true,
1
2);
self.widget.add(&container);
// Restore state
...
...
src/window_state.rs
View file @
fd7aeac9
...
...
@@ -46,7 +46,7 @@ impl WindowState {
}
pub fn load_into(&self, window: >k::ApplicationWindow, bg_entry: &ColourEntry, fg_entry: &ColourEntry) {
window.resize(
60
0, 3
5
0);
window.resize(
55
0, 3
0
0);
if self.x > -1 && self.y > -1 {
window.move_(self.x, self.y);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment