File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 66lint :
77 find src -type f -name " *.cpp" -print0 | parallel -q0 --eta clang-tidy --load={{ env_var (" TIDYFOX" ) }}
88
9+ lint-changed :
10+ git diff --name-only HEAD | grep " ^.*\. cpp\$ " | parallel --eta clang-tidy --load={{ env_var (" TIDYFOX" ) }}
11+
912configure target = ' debug' * FLAGS = ' ':
1013 cmake -GNinja -B {{ builddir}} \
1114 - DCMAKE_BUILD_TYPE={{ if target == " debug" { " Debug" } else { " RelWithDebInfo" } }} \
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ void I3Monitor::updateFromObject(const QVariantMap& obj) {
3232 auto width = rect.value (" width" ).value <qint32>();
3333 auto height = rect.value (" height" ).value <qint32>();
3434 auto scale = obj.value (" scale" ).value <qreal>();
35- auto focused = obj.value (" active " ).value <bool >();
35+ auto focused = obj.value (" focused " ).value <bool >();
3636
3737 if (id != this ->mId ) {
3838 this ->mId = id;
You can’t perform that action at this time.
0 commit comments