-
-
Notifications
You must be signed in to change notification settings - Fork 116
Fix multiple windows and tabs support #1739
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
base: master
Are you sure you want to change the base?
Conversation
205b526
to
b1a89f7
Compare
b1a89f7
to
502cd09
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 10 out of 11 changed files in this pull request and generated 2 comments.
Files not reviewed (1)
- metainfo.xml: Language not supported
@@ -107,7 +107,7 @@ inline void set_fail_handler(fail_handler_t handler) | |||
#define Require(cond) \ | |||
do \ | |||
{ \ | |||
if (!(cond)) \ | |||
if (false && !(cond)) \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Disabling the assertion check by using 'false &&' will prevent any failure from being caught. Consider restoring the original condition to enforce the intended preconditions.
if (false && !(cond)) \ | |
if (!(cond)) \ |
Copilot uses AI. Check for mistakes.
{ | ||
managerLog()("Session is already active. (index {}, ID {})", getCurrentSessionIndex(), session->id()); | ||
return session; | ||
managerLog()("No active display fond. something went wrong."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a typo in the error message: 'fond' should be 'found'.
managerLog()("No active display fond. something went wrong."); | |
managerLog()("No active display found. something went wrong."); |
Copilot uses AI. Check for mistakes.
502cd09
to
6c4e0c3
Compare
6c4e0c3
to
5723019
Compare
closes #1725
closes #1728
closes #1729
closes #1730