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
9f0926be
Commit
9f0926be
authored
19 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
Minor fix to loop for font finding.
parent
d4ea4a25
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/zmapUtils/zmapGUIutils.c
+5
-5
5 additions, 5 deletions
src/zmapUtils/zmapGUIutils.c
with
5 additions
and
5 deletions
src/zmapUtils/zmapGUIutils.c
+
5
−
5
View file @
9f0926be
...
...
@@ -19,16 +19,15 @@
*-------------------------------------------------------------------
* This file is part of the ZMap genome database package
* and was written by
* Rob Clack (Sanger Institute, UK) rnc@sanger.ac.uk,
* Ed Griffiths (Sanger Institute, UK) edgrif@sanger.ac.uk and
*
Simon Kell
ey (Sanger Institute, UK)
srk
@sanger.ac.uk
*
Roy Stor
ey (Sanger Institute, UK)
rds
@sanger.ac.uk
*
* Description:
* Exported functions: See XXXXXXXXXXXXX.h
* HISTORY:
* Last edited: Nov 1
1 12:34
2005 (
rds
)
* Last edited: Nov 1
4 09:26
2005 (
edgrif
)
* Created: Thu Jul 24 14:37:35 2003 (edgrif)
* CVS info: $Id: zmapGUIutils.c,v 1.
6
2005-11-1
3
1
6:45:10 rds
Exp $
* CVS info: $Id: zmapGUIutils.c,v 1.
7
2005-11-1
4
1
1:14:02 edgrif
Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -405,7 +404,7 @@ gboolean zMapGUIGetFixedWidthFont(GtkWidget *widget,
pango_context_list_families
(
context
,
&
families
,
&
n_families
)
;
for
(
i
=
0
;
(
i
<
n_families
&&
found
==
FALSE
)
;
i
++
)
for
(
i
=
0
;
(
i
<
n_families
&&
!
found
)
;
i
++
)
{
const
gchar
*
name
;
GList
*
pref
;
...
...
@@ -427,6 +426,7 @@ gboolean zMapGUIGetFixedWidthFont(GtkWidget *widget,
{
found
=
TRUE
;
match_family
=
families
[
i
]
;
break
;
}
pref
=
g_list_next
(
pref
)
;
...
...
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