Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/column number #918

Merged
merged 1 commit into from
Dec 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions src/contour/display/TerminalWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,15 +528,18 @@ void TerminalWidget::initializeGL()

void TerminalWidget::resizeGL(int _width, int _height)
{
QOpenGLWidget::resizeGL(_width, _height);
Width const width =
profile().scrollbarPosition == config::ScrollBarPosition::Hidden
? Width::cast_from(_width - qApp->style()->pixelMetric(QStyle::PM_ScrollBarExtent))
: Width::cast_from(_width);
QOpenGLWidget::resizeGL(width.as<int>(), _height);

if (!session_)
return;

auto const qtBaseWidgetSize =
terminal::ImageSize { Width::cast_from(_width), Height::cast_from(_height) };
auto const qtBaseWidgetSize = terminal::ImageSize { width, Height::cast_from(_height) };
auto const newPixelSize = qtBaseWidgetSize * contentScale();
DisplayLog()("Resizing view to {}x{} virtual ({} actual).", _width, _height, newPixelSize);
DisplayLog()("Resizing view to {}x{} virtual ({} actual).", width, _height, newPixelSize);
applyResize(newPixelSize, *session_, *renderer_);
}

Expand Down