Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
d25c77ed
Commit
d25c77ed
authored
19 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
bug fix: only do GUI updates if viewwindow is the current window.
parent
52cc0dce
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/zmapControl/zmapControl.c
+7
-3
7 additions, 3 deletions
src/zmapControl/zmapControl.c
with
7 additions
and
3 deletions
src/zmapControl/zmapControl.c
+
7
−
3
View file @
d25c77ed
...
...
@@ -26,9 +26,9 @@
* the window code and the threaded server code.
* Exported functions: See ZMap.h
* HISTORY:
* Last edited: Mar
3
1
7:08
2006 (
rds
)
* Last edited: Mar
6
1
1:34
2006 (
edgrif
)
* Created: Thu Jul 24 16:06:44 2003 (edgrif)
* CVS info: $Id: zmapControl.c,v 1.6
2
2006-03-0
3
1
7:16:29 rds
Exp $
* CVS info: $Id: zmapControl.c,v 1.6
3
2006-03-0
6
1
1:45:20 edgrif
Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -639,12 +639,16 @@ static void selectCB(ZMapViewWindow view_window, void *app_data, void *view_data
}
/* Called when a view needs to tell us it has changed. Note that we only need to change
* anything if the view in question is the focus view. */
static
void
visibilityChangeCB
(
ZMapViewWindow
view_window
,
void
*
app_data
,
void
*
view_data
)
{
ZMap
zmap
=
(
ZMap
)
app_data
;
ZMapWindowVisibilityChange
vis_change
=
(
ZMapWindowVisibilityChange
)
view_data
;
zmapControlSetGUIVisChange
(
zmap
,
vis_change
)
;
if
(
view_window
==
zmap
->
focus_viewwindow
)
zmapControlSetGUIVisChange
(
zmap
,
vis_change
)
;
return
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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