Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
b8fa82ce
Commit
b8fa82ce
authored
Feb 15, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/messages.cpp: fixed insertion point in messages window.
parent
37e87108
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
modules/gui/wxwindows/messages.cpp
modules/gui/wxwindows/messages.cpp
+5
-3
No files found.
modules/gui/wxwindows/messages.cpp
View file @
b8fa82ce
...
...
@@ -95,9 +95,9 @@ Messages::Messages( intf_thread_t *_p_intf, wxWindow *p_parent ):
clear_button
->
SetDefault
();
/* Create the Save Log button */
wxButton
*
save_log_button
=
new
wxButton
(
messages_panel
,
wxID_SAVEAS
,
wxU
(
_
(
"Save As..."
)));
save_log_button
->
SetDefault
();
wxButton
*
save_log_button
=
new
wxButton
(
messages_panel
,
wxID_SAVEAS
,
wxU
(
_
(
"Save As..."
)));
save_log_button
->
SetDefault
();
/* Place everything in sizers */
wxBoxSizer
*
buttons_sizer
=
new
wxBoxSizer
(
wxHORIZONTAL
);
...
...
@@ -143,6 +143,8 @@ void Messages::UpdateLog()
int
i_stop
=
*
p_sub
->
pi_stop
;
vlc_mutex_unlock
(
p_sub
->
p_lock
);
textctrl
->
SetInsertionPointEnd
();
if
(
p_sub
->
i_start
!=
i_stop
)
{
for
(
i_start
=
p_sub
->
i_start
;
...
...
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