Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gifitti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nick Kozel
Gifitti
Commits
eb2936c2
Commit
eb2936c2
authored
8 years ago
by
Riley Mcgee
Browse files
Options
Downloads
Patches
Plain Diff
Help Context opening N times resolved
parent
be9c0a68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Gifitti/Gifitti/Models/GifModel.cs
+1
-1
1 addition, 1 deletion
src/Gifitti/Gifitti/Models/GifModel.cs
src/Gifitti/Gifitti/View_Models/MainForm.cs
+5
-3
5 additions, 3 deletions
src/Gifitti/Gifitti/View_Models/MainForm.cs
with
6 additions
and
4 deletions
src/Gifitti/Gifitti/Models/GifModel.cs
+
1
−
1
View file @
eb2936c2
...
...
@@ -190,7 +190,7 @@ namespace Gifitti.Models
{
originalGif
.
SelectActiveFrame
(
dimension
,
index
);
//find the frame
return
(
Image
)
originalGif
.
Clone
()
;
return
originalGif
;
//return a copy of it
}
...
...
This diff is collapsed.
Click to expand it.
src/Gifitti/Gifitti/View_Models/MainForm.cs
+
5
−
3
View file @
eb2936c2
...
...
@@ -25,7 +25,7 @@ namespace Gifitti.View_Models
{
#
region
Fields
GifModel
gm
;
HelpContext
f2
=
new
HelpContext
();
// GifImage _currentGif; <- used to encapsulate info later
private
const
int
widthBuffer
=
20
;
private
const
int
heightBuffer
=
60
;
...
...
@@ -300,8 +300,10 @@ namespace Gifitti.View_Models
/// <param name="e"> Event arguments associated with this event. </param>
private
void
menuOpenHelp
(
object
sender
,
EventArgs
e
)
{
HelpContext
f2
=
new
HelpContext
();
f2
.
Show
();
if
(
f2
.
IsDisposed
)
f2
=
new
HelpContext
();
if
(!
f2
.
Visible
)
f2
.
Show
();
}
/// <summary>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment