Changeset 15b7a268bfaf00458dc3e6c1a7733c4f9f0b9197
- Timestamp:
- 07/06/07 23:58:47
(1 year ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1181253527 +0000
- git-parent:
[4f7eaeb046a1b825f6680284337ad9f672d77c11]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1181253527 +0000
- Message:
Set VideoWidget? minimal size to 16x16 (I'm not sure it is the right thing).
It avoids segfault when resizing to 0x0.
It fixes segfault when VLC is started with a video file. (But I fear
that we have a race condition here because if the same file is played
later, it works)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbad8f53 |
r15b7a26 |
|
| 92 | 92 | } |
|---|
| 93 | 93 | p_vout = p_nvout; |
|---|
| 94 | | setMinimumSize( 0, 0 ); |
|---|
| | 94 | setMinimumSize( 16, 16 ); |
|---|
| 95 | 95 | return (void*)winId(); |
|---|
| 96 | 96 | } |
|---|