forked from msys2/MINGW-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ | |
*~ | ||
*.swp | ||
*.swo | ||
logpipe*.lnk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- gtk/gtkplacesview.c.orig 2016-01-07 04:25:56.000000000 +0100 | ||
+++ gtk/gtkplacesview.c 2016-11-14 20:29:42.114362700 +0100 | ||
@@ -1119,9 +1119,11 @@ | ||
populate_servers (view); | ||
|
||
/* fetch networks and add them asynchronously */ | ||
+/* is this relevant for windows? fetch_networks use nautilus network:/// */ | ||
+#ifndef G_OS_WIN32 | ||
if (!gtk_places_view_get_local_only (view)) | ||
fetch_networks (view); | ||
- | ||
+#endif | ||
update_view_mode (view); | ||
/* Check whether we still are in a loading state */ | ||
update_loading (view); |