Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
e5a27303
Commit
e5a27303
authored
Apr 21, 2020
by
rswindell
Browse files
Print a blank line after the Name field even if/when there is no description.
parent
ff7a78ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
exec/xtrn-setup.js
exec/xtrn-setup.js
+2
-1
No files found.
exec/xtrn-setup.js
View file @
e5a27303
...
...
@@ -65,7 +65,8 @@ while (!js.terminated) {
xtrn
=
tree
.
currentItem
.
__xtrn_setup
;
info_frame
.
clear
();
info_frame
.
putmsg
(
'
\
x01h
\
x01w
'
+
xtrn
.
Name
+
'
\r\n
'
);
if
(
xtrn
.
Desc
)
info_frame
.
putmsg
(
'
\
x01n
\
x01w
'
+
xtrn
.
Desc
+
'
\r\n\r\n
'
);
if
(
xtrn
.
Desc
)
info_frame
.
putmsg
(
'
\
x01n
\
x01w
'
+
xtrn
.
Desc
+
'
\r\n
'
);
info_frame
.
putmsg
(
'
\r\n
'
);
if
(
xtrn
.
By
)
info_frame
.
putmsg
(
'
\
x01h
\
x01cBy
\
x01w:
\r\n\
x01w
'
+
xtrn
.
By
+
'
\r\n\r\n
'
);
if
(
xtrn
.
Cats
)
info_frame
.
putmsg
(
'
\
x01h
\
x01cCategories
\
x01w:
\r\n\
x01n
'
+
xtrn
.
Cats
+
'
\r\n\r\n
'
);
if
(
xtrn
.
Subs
)
info_frame
.
putmsg
(
'
\
x01h
\
x01cSubcategories
\
x01w:
\r\n\
x01n
'
+
xtrn
.
Subs
+
'
\r\n\r\n
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment