1
0
Fork 0
mirror of synced 2024-05-01 19:13:24 +12:00

Add missing popover info for invalid symlinks (#209)

This commit is contained in:
Rafał Mikrut 2021-01-14 20:38:29 +01:00 committed by GitHub
parent 6cb92871ff
commit 56763846ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -773,6 +773,18 @@ pub fn connect_popovers(gui_data: &GuiData) {
column_size_as_bytes: None,
column_modification_as_secs: None,
},
PopoverObject {
notebook_type: NotebookMainEnum::Symlinks,
available_modes: vec!["all", "reverse", "custom"].iter().map(|e| e.to_string()).collect(),
tree_view: gui_data.main_notebook.tree_view_invalid_symlinks.clone(),
column_path: Some(ColumnsInvalidSymlinks::Path as i32),
column_name: Some(ColumnsInvalidSymlinks::Name as i32),
column_color: None,
column_dimensions: None,
column_size: None,
column_size_as_bytes: None,
column_modification_as_secs: None,
},
];
let popover_select = gui_data.popovers.popover_select.clone();