Skip to content
Draft
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 src/View/DetailsColumn.vala
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public class Files.View.DetailsColumn : Gtk.Bin {
var scrolled = new Gtk.ScrolledWindow (null, null) {
child = box,
propagate_natural_height = true,
hscrollbar_policy = NEVER
hscrollbar_policy = AUTOMATIC
};

child = scrolled;
Expand Down
2 changes: 1 addition & 1 deletion src/View/Miller.vala
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace Files.View {
draw_file_details_timeout_id = Timeout.add (200, () => {
draw_file_details_timeout_id = 0;
details = new View.DetailsColumn (file, view);
add_side_widget (details, false, true); // Shrink but not resize
add_side_widget (details, true, false); // Resize (expand) but not shrink
// Preview pane not part of slot list so no need to update width
// but need to scroll according to new available space
schedule_scroll_to_slot (last_slot, true);
Expand Down