Skip to content

Commit

Permalink
Merge pull request #42 from dropbox/paper-in-filesystem
Browse files Browse the repository at this point in the history
Add legacy warnings to paper tab
  • Loading branch information
dheavern authored Jan 30, 2020
2 parents a179c1f + a3fa473 commit 3f3ff61
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 75 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ local.properties

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
.vs/

# User-specific files
*.suo
Expand Down Expand Up @@ -214,3 +215,4 @@ pip-log.txt

#Mr Developer
.mr.developer.cfg

2 changes: 1 addition & 1 deletion Source/DfBAdminToolkit/View/MainView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ private void InitializeRuntimeComponent()
_tabPages.Add(new TabPage()
{
Name = "tabPage_Paper",
Text = "Paper",
Text = "Legacy Paper",
Dock = DockStyle.Fill,
Padding = new Padding(5, 3, 5, 3),
UseVisualStyleBackColor = true
Expand Down
5 changes: 5 additions & 0 deletions Source/DfBAdminToolkit/View/PaperView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -374,5 +374,10 @@ public PaperModel GetPaperIds()
}

#endregion Events

private void legacyWarningLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://www.dropbox.com/lp/developers/reference/paper-migration-guide");
}
}
}
Loading

0 comments on commit 3f3ff61

Please sign in to comment.