Changeset b6ceabb1bc7e47db528a13df05d413092d558bbf
- Timestamp:
- 12/10/05 21:18:50
(3 years ago)
- Author:
- Olivier Teulière <ipkiss@videolan.org>
- git-committer:
- Olivier Teulière <ipkiss@videolan.org> 1129144730 +0000
- git-parent:
[e5455af92e3a117356a06d90b79ad440948b558c]
- git-author:
- Olivier Teulière <ipkiss@videolan.org> 1129144730 +0000
- Message:
- modules/gui/wxwidgets/messages.cpp: set the insertion point only before inserting text (patch by zcot)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0bd43e4 |
rb6ceabb |
|
| 144 | 144 | vlc_mutex_unlock( p_sub->p_lock ); |
|---|
| 145 | 145 | |
|---|
| 146 | | textctrl->SetInsertionPointEnd(); |
|---|
| 147 | | |
|---|
| 148 | 146 | if( p_sub->i_start != i_stop ) |
|---|
| 149 | 147 | { |
|---|
| | 148 | textctrl->SetInsertionPointEnd(); |
|---|
| | 149 | |
|---|
| 150 | 150 | for( i_start = p_sub->i_start; |
|---|
| 151 | 151 | i_start != i_stop; |
|---|