File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 */
77
88public class Scratch.FolderManager.ProjectFolderItem : FolderItem {
9- struct VisibleItem {
10- public string rel_path;
11- public Item item;
12- }
13-
14- private static Icon added_icon;
15- private static Icon modified_icon;
16- private SimpleAction checkout_local_branch_action;
17- private SimpleAction checkout_remote_branch_action;
18-
199 public signal void closed ();
2010
2111 public Scratch . Services . MonitoredRepository ? monitored_repo { get ; private set ; default = null ; }
22- // Cache the visible item in the project.
23- private List<VisibleItem ?> visible_item_list = null ;
24-
2512 public bool is_git_repo {
2613 get {
2714 return monitored_repo != null ;
2815 }
2916 }
3017
18+ private struct VisibleItem {
19+ public string rel_path;
20+ public Item item;
21+ }
22+ private static Icon added_icon;
23+ private static Icon modified_icon;
24+ private SimpleAction checkout_local_branch_action;
25+ private SimpleAction checkout_remote_branch_action;
26+ // Cache the visible item in the project.
27+ private List<VisibleItem ?> visible_item_list = null ;
3128 private Ggit . Repository ? git_repo {
3229 get {
3330 return (is_git_repo ? monitored_repo. git_repo : null );
You can’t perform that action at this time.
0 commit comments