linux setup: don't allow closing of setup window using the window button. Fixes #897

This commit is contained in:
Hylke Bons 2012-08-10 20:34:56 +01:00
parent 4cac379a2f
commit 846d5f0241

View file

@ -52,6 +52,10 @@ namespace SparkleShare {
WindowPosition = WindowPosition.Center;
Deletable = false;
DeleteEvent += delegate (object sender, DeleteEventArgs args) {
args.RetVal = true;
};
SecondaryTextColor = SparkleUIHelpers.GdkColorToHex (Style.Foreground (StateType.Insensitive));
SecondaryTextColorSelected =