0001-don-t-put-ColumnHandles-outside-of-visible-area.patch
| src/qtui/chatscene.cpp | ||
|---|---|---|
| 438 | 438 |
if(_firstColHandlePos == xpos) |
| 439 | 439 |
return; |
| 440 | 440 | |
| 441 |
_firstColHandlePos = xpos; |
|
| 441 |
_firstColHandlePos = xpos >= 0 ? xpos : 0;
|
|
| 442 | 442 |
ChatViewSettings viewSettings(this); |
| 443 | 443 |
viewSettings.setValue("FirstColumnHandlePos", _firstColHandlePos);
|
| 444 | 444 |
ChatViewSettings defaultSettings; |
| 445 |
- |
|