-
-
Notifications
You must be signed in to change notification settings - Fork 83
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
Varrious fixes for errors found in fvwm3-output.log #922
Conversation
The color commands have already been removed in favor of colorsets. This removes some commands that got missed in the removal.
Applications with spaces caused a bad style option because of missing quotes. This adds quotes around the application name to deal with applications with spaces.
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.
Just one request for change -- see in-line comments.
fvwm/virtual.c
Outdated
fvwm_debug(__func__, "Window is PanFrame top\n"); | ||
return True; | ||
} | ||
|
||
if (is_pf_bottom) { | ||
fvwm_debug(__func__, "Window is PanFrame bottom\n"); | ||
return True; | ||
} | ||
|
||
if (is_pf_left) { | ||
fvwm_debug(__func__, "Window is PanFrame left\n"); | ||
return True; | ||
} | ||
|
||
if (is_pf_right) { | ||
fvwm_debug(__func__, "Window is PanFrame right\n"); |
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.
These could do with staying around for now -- I still see weird things with different sized monitors and configurations where panframes can go wandering to different locations.
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.
Okay, they are back. I just do a lot of EdgeScrolling and my logs are getting filled with these messages.
If xdg wasn't able to find a valid icon, the icon would revert to a string that is not a valid icon path, causing fvwm to return an error. Add one final check to ensure that the icon path exists before using it.
2b4adca
to
722af90
Compare
Awesome! Thanks, @somiaj. |
In order to clean up the error log file I found that: