Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Main
Synchronet
Commits
84bf7f6a
Commit
84bf7f6a
authored
3 months ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Include number of timed events and external programs in title of list windows
parent
07d09b75
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sbbs3/scfg/scfgxtrn.c
+3
-2
3 additions, 2 deletions
src/sbbs3/scfg/scfgxtrn.c
with
3 additions
and
2 deletions
src/sbbs3/scfg/scfgxtrn.c
+
3
−
2
View file @
84bf7f6a
...
...
@@ -460,7 +460,8 @@ void tevents_cfg()
"
\n
"
"To configure an event, select it and hit ~ ENTER ~.
\n
"
;
i
=
uifc
.
list
(
j
,
0
,
0
,
0
,
&
dflt
,
&
bar
,
"Timed Events"
,
opt
);
snprintf
(
str
,
sizeof
str
,
"Timed Events (%u)"
,
cfg
.
total_events
);
i
=
uifc
.
list
(
j
,
0
,
0
,
0
,
&
dflt
,
&
bar
,
str
,
opt
);
if
((
signed
)
i
==-
1
)
return
;
int
msk
=
i
&
MSK_ON
;
...
...
@@ -1095,7 +1096,7 @@ void xtrn_cfg(int section)
"
\n
"
"To configure a program, select it with the arrow keys and hit ~ ENTER ~.
\n
"
;
sprintf
(
str
,
"%s Programs"
,
cfg
.
xtrnsec
[
section
]
->
name
);
s
n
printf
(
str
,
sizeof
str
,
"%s Programs
(%d)
"
,
cfg
.
xtrnsec
[
section
]
->
name
,
j
);
i
=
uifc
.
list
(
i
,
0
,
0
,
45
,
&
ext_dflt
,
&
ext_bar
,
str
,
opt
);
if
((
signed
)
i
==-
1
)
return
;
...
...
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