Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
cda63044
Commit
cda63044
authored
May 29, 2004
by
Yoann Peronneau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/ncurses.c: Fixed a bug due to the new 'Volume' line.
parent
7b5e02f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
modules/gui/ncurses.c
modules/gui/ncurses.c
+6
-5
No files found.
modules/gui/ncurses.c
View file @
cda63044
...
...
@@ -957,6 +957,7 @@ static void Redraw ( intf_thread_t *p_intf, time_t *t_last_refresh )
mvnprintw
(
y
++
,
0
,
COLS
,
"Source: <no current item>"
);
DrawEmptyLine
(
p_sys
->
w
,
y
++
,
0
,
COLS
);
DrawEmptyLine
(
p_sys
->
w
,
y
++
,
0
,
COLS
);
DrawEmptyLine
(
p_sys
->
w
,
y
++
,
0
,
COLS
);
}
DrawBox
(
p_sys
->
w
,
y
,
0
,
3
,
COLS
,
""
);
...
...
@@ -1192,27 +1193,27 @@ static void Redraw ( intf_thread_t *p_intf, time_t *t_last_refresh )
}
if
(
p_sys
->
i_box_type
==
BOX_SEARCH
)
{
DrawEmptyLine
(
p_sys
->
w
,
6
,
1
,
COLS
-
2
);
DrawEmptyLine
(
p_sys
->
w
,
7
,
1
,
COLS
-
2
);
if
(
p_sys
->
psz_search_chain
)
{
if
(
strlen
(
p_sys
->
psz_search_chain
)
==
0
&&
p_sys
->
psz_old_search
!=
NULL
)
{
/* Searching next entry */
mvnprintw
(
6
,
1
,
COLS
-
2
,
"Find: %s"
,
p_sys
->
psz_old_search
);
mvnprintw
(
7
,
1
,
COLS
-
2
,
"Find: %s"
,
p_sys
->
psz_old_search
);
}
else
{
mvnprintw
(
6
,
1
,
COLS
-
2
,
"Find: %s"
,
p_sys
->
psz_search_chain
);
mvnprintw
(
7
,
1
,
COLS
-
2
,
"Find: %s"
,
p_sys
->
psz_search_chain
);
}
}
}
if
(
p_sys
->
i_box_type
==
BOX_OPEN
)
{
DrawEmptyLine
(
p_sys
->
w
,
6
,
1
,
COLS
-
2
);
if
(
p_sys
->
psz_open_chain
)
{
mvnprintw
(
6
,
1
,
COLS
-
2
,
"Open: %s"
,
p_sys
->
psz_open_chain
);
DrawEmptyLine
(
p_sys
->
w
,
7
,
1
,
COLS
-
2
);
mvnprintw
(
7
,
1
,
COLS
-
2
,
"Open: %s"
,
p_sys
->
psz_open_chain
);
}
}
...
...
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