diff --git a/libs/libmythtv/DVDRingBuffer.cpp b/libs/libmythtv/DVDRingBuffer.cpp
index 7c87b44..941e6f5 100644
a
|
b
|
int DVDRingBufferPriv::safe_read(void *data, unsigned sz)
|
337 | 337 | cellid = 0; |
338 | 338 | cellRepeated = false; |
339 | 339 | menupktpts = 0; |
340 | | if (cellHasStillFrame) |
341 | | GetMythUI()->DisableScreensaver(); |
342 | 340 | InStillFrame(false); |
343 | 341 | |
344 | 342 | if (parent && IsInMenu()) |
… |
… |
void DVDRingBufferPriv::InStillFrame(bool change)
|
1133 | 1131 | QString str; |
1134 | 1132 | |
1135 | 1133 | if (change) |
| 1134 | { |
1136 | 1135 | str = "Entering DVD Still Frame"; |
1137 | | else |
| 1136 | GetMythUI()->RestoreScreensaver(); |
| 1137 | } |
| 1138 | else |
| 1139 | { |
1138 | 1140 | str = "Leaving DVD Still Frame"; |
1139 | | |
| 1141 | GetMythUI()->DisableScreensaver(); |
| 1142 | } |
1140 | 1143 | if (cellHasStillFrame != change) |
1141 | 1144 | VERBOSE(VB_PLAYBACK, str); |
1142 | 1145 | |