Skip to content

Commit

Permalink
Enh: new Default Icon
Browse files Browse the repository at this point in the history
new (default) Icon to distinguish from gInk
  • Loading branch information
pubpub-zz committed Feb 24, 2021
1 parent 9a22f1c commit 7e88d8b
Show file tree
Hide file tree
Showing 15 changed files with 12,806 additions and 12 deletions.
Binary file modified ppInk/icon_red.ico
Binary file not shown.
Binary file modified ppInk/icon_white.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions src/CallForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3,200 changes: 3,198 additions & 2 deletions src/CallForm.resx

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/FormCollection.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src/FormCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2696,7 +2696,10 @@ private void tiSlide_Tick(object sender, EventArgs e)
if(DateTime.Now.Ticks>j)
{
if(st.DrawingAttributes.Transparency == 255)
IC.Ink.Strokes.RemoveAt(i);
{
//IC.Ink.Strokes.RemoveAt(i);
IC.Ink.DeleteStroke(IC.Ink.Strokes[i]);
}
else if (st.DrawingAttributes.Transparency > 245)
st.DrawingAttributes.Transparency = 255;
else
Expand Down
3,196 changes: 3,196 additions & 0 deletions src/FormCollection.resx

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/FormDisplay.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3,202 changes: 3,199 additions & 3 deletions src/FormDisplay.resx

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/FormOptions.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/FormOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ private void FormOptions_LocalReload()
if (i < 0) i = sin.Length;
return sin.Substring(0, i);
}
this.Text = Root.Local.MenuEntryOptions + " - gInk";
this.Text = Root.Local.MenuEntryOptions + " - ppInk";
VideoTabCtrl.TabPages[0].Text = Root.Local.OptionsTabGeneral;
VideoTabCtrl.TabPages[1].Text = Root.Local.OptionsTabPens;
VideoTabCtrl.TabPages[2].Text = Root.Local.OptionsTabHotkeys;
Expand Down
Loading

0 comments on commit 7e88d8b

Please sign in to comment.