You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix janky scrolling (flickering during scrolling) (#105)
* Fix janky scrolling + little refactor
* Separate classes to different headers
* Msg grid ordering fix, fix zindex calc, sort only when necessary
Stricter compiler warning policy (#45)
* Stricter compiler warning policy
Make warnings errors in `CMakeLists.txt`.
* Fix all compiler warnings
- Explicitly initialize base class
- Mark unused parameters as unused by various means (`Q_UNUSED`, removing parameter name, commenting out parameter name etc)
- Comment out or remove unused variables
- Explicitly cast u16 to size_t to avoid sign-compare warning
- Shuffle around some `Q_UNUSED` macros to properly work with preprocessor directives
* CI Test
* More fixes
* Wall Werror for MSVC
* Attempt #1 to fix Clang on Windows errors
* Attempt number 2 to fix Clang on Windows errors
* Set warnings to W4, fix build errors on MSVC
MSVC also gives warnings for external libs, which need to be ignored.
* Use size_t instead of u64, set flags for non-MSVC compilers
Co-authored-by: Rohit Pradhan <rohit.px02@gmail.com>