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

Don't auto adjust plots #139

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: windows-latest
runs-on: windows-2019

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion trdrop/headers/cpp_interface/framerateplot.h
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ class FrameratePlot
{
const double manual_set_max_framerate = _shared_general_options_model->get_framerate_max_fps();
const double real_max_framerate = _shared_framerate_model->get_max_framerate_bounds();
if (manual_set_max_framerate < real_max_framerate) return real_max_framerate;
if (manual_set_max_framerate < real_max_framerate)
return manual_set_max_framerate;
}
//! get text offset for shadows below the text
Expand Down
2 changes: 1 addition & 1 deletion trdrop/headers/cpp_interface/frametimeplot.h
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ class FrametimePlot
{
const double manual_set_max_frametime = _shared_general_options_model->get_frametime_max_ms();
const double real_max_frametime = _shared_frametime_model->get_max_frametime_bounds();
if (manual_set_max_frametime < real_max_frametime) return real_max_frametime;
if (manual_set_max_frametime < real_max_frametime)
return manual_set_max_frametime;
}

Expand Down