linux setup: adjust size of slide 3

This commit is contained in:
Hylke Bons 2012-12-01 17:49:01 +00:00
parent 0664671e6c
commit 9c7e6f687c
2 changed files with 1 additions and 17 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View file

@ -51,7 +51,6 @@ namespace SparkleShare {
switch (type) { switch (type) {
case PageType.Setup: { case PageType.Setup: {
Header = "Welcome to SparkleShare!"; Header = "Welcome to SparkleShare!";
Description = "First off, what's your name and email?\nThis information is only visible to team members."; Description = "First off, what's your name and email?\nThis information is only visible to team members.";
@ -132,7 +131,6 @@ namespace SparkleShare {
} }
case PageType.Add: { case PageType.Add: {
Header = "Where's your project hosted?"; Header = "Where's your project hosted?";
VBox layout_vertical = new VBox (false, 12); VBox layout_vertical = new VBox (false, 12);
@ -339,7 +337,6 @@ namespace SparkleShare {
} }
case PageType.Invite: { case PageType.Invite: {
Header = "You've received an invite!"; Header = "You've received an invite!";
Description = "Do you want to add this project to SparkleShare?"; Description = "Do you want to add this project to SparkleShare?";
@ -435,7 +432,6 @@ namespace SparkleShare {
} }
case PageType.Error: { case PageType.Error: {
Header = "Oops! Something went wrong" + "…"; Header = "Oops! Something went wrong" + "…";
VBox points = new VBox (false, 0); VBox points = new VBox (false, 0);
@ -564,7 +560,6 @@ namespace SparkleShare {
ColumnSpacing = 6 ColumnSpacing = 6
}; };
table.Attach (password_label, 0, 1, 0, 1); table.Attach (password_label, 0, 1, 0, 1);
table.Attach (password_entry, 1, 2, 0, 1); table.Attach (password_entry, 1, 2, 0, 1);
@ -596,8 +591,6 @@ namespace SparkleShare {
Add (wrapper); Add (wrapper);
AddButton (cancel_button); AddButton (cancel_button);
AddButton (continue_button); AddButton (continue_button);
@ -605,7 +598,6 @@ namespace SparkleShare {
} }
case PageType.CryptoPassword: { case PageType.CryptoPassword: {
Header = "This project contains encrypted files"; Header = "This project contains encrypted files";
Description = "Please enter the password to see their contents."; Description = "Please enter the password to see their contents.";
@ -676,16 +668,8 @@ namespace SparkleShare {
} }
case PageType.Finished: { case PageType.Finished: {
UrgencyHint = true; UrgencyHint = true;
if (!HasToplevelFocus) {
string title = "Your shared project is ready!";
string subtext = "You can find the files in your SparkleShare folder.";
Program.UI.Bubbles.Controller.ShowBubble (title, subtext, null);
}
Header = "Your shared project is ready!"; Header = "Your shared project is ready!";
Description = "You can find it in your SparkleShare folder"; Description = "You can find it in your SparkleShare folder";
@ -734,7 +718,6 @@ namespace SparkleShare {
case PageType.Tutorial: { case PageType.Tutorial: {
switch (Controller.TutorialPageNumber) { switch (Controller.TutorialPageNumber) {
case 1: { case 1: {
Header = "What's happening next?"; Header = "What's happening next?";
@ -874,6 +857,7 @@ namespace SparkleShare {
markup = markup.Replace (SecondaryTextColor, SecondaryTextColorSelected); markup = markup.Replace (SecondaryTextColor, SecondaryTextColorSelected);
else else
markup = markup.Replace (SecondaryTextColorSelected, SecondaryTextColor); markup = markup.Replace (SecondaryTextColorSelected, SecondaryTextColor);
} else { } else {
markup = markup.Replace (SecondaryTextColorSelected, SecondaryTextColor); markup = markup.Replace (SecondaryTextColorSelected, SecondaryTextColor);
} }