Skip to content

Commit dc7e047

Browse files
committed
fix(third_section): fix third section's resize direction
Signed-off-by: AmirReza_Ashouri <[email protected]>
1 parent e2f14e6 commit dc7e047

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Telegram/SourceFiles/mainwidget.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -2351,6 +2351,9 @@ void MainWidget::ensureThirdColumnResizeAreaCreated() {
23512351
}
23522352
auto moveLeftCallback = [=](int globalLeft) {
23532353
auto newWidth = mapToGlobal(QPoint(width(), 0)).x() - globalLeft;
2354+
newWidth = rtl()
2355+
? (width() - newWidth)
2356+
: newWidth;
23542357
Core::App().settings().setThirdColumnWidth(newWidth);
23552358
};
23562359
auto moveFinishedCallback = [=] {

0 commit comments

Comments
 (0)