From 1e9c5eb4412c169e461bd942e893deb88ba45755 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 5 Apr 2016 09:38:05 +0100 Subject: [PATCH] linux setup: Re-disable fetching history by default --- .../Common/Pixmaps/Sources/gitorious.svg | 63 ------------------- SparkleShare/Linux/Setup.cs | 2 +- 2 files changed, 1 insertion(+), 64 deletions(-) delete mode 100644 SparkleShare/Common/Pixmaps/Sources/gitorious.svg diff --git a/SparkleShare/Common/Pixmaps/Sources/gitorious.svg b/SparkleShare/Common/Pixmaps/Sources/gitorious.svg deleted file mode 100644 index e1c011d4..00000000 --- a/SparkleShare/Common/Pixmaps/Sources/gitorious.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/SparkleShare/Linux/Setup.cs b/SparkleShare/Linux/Setup.cs index 24a00419..19693947 100755 --- a/SparkleShare/Linux/Setup.cs +++ b/SparkleShare/Linux/Setup.cs @@ -314,7 +314,7 @@ namespace SparkleShare { add_button.Clicked += delegate { Controller.AddPageCompleted (address_entry.Text, path_entry.Text); }; - CheckButton check_button = new CheckButton ("Fetch prior revisions") { Active = true }; + CheckButton check_button = new CheckButton ("Fetch prior revisions") { Active = false }; check_button.Toggled += delegate { Controller.HistoryItemChanged (check_button.Active); }; AddOption (check_button);