Advertisement
Guest User

Patch for wine 1.7.29 to fix tooltips in Photoshop

a guest
Oct 28th, 2014
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.52 KB | None | 0 0
  1. diff -aur a/dlls/comctl32/tooltips.c b/dlls/comctl32/tooltips.c
  2. --- a/dlls/comctl32/tooltips.c  2014-10-17 14:01:42.000000000 +0200
  3. +++ b/dlls/comctl32/tooltips.c  2014-10-27 16:02:40.959822747 +0100
  4. @@ -1141,6 +1141,12 @@
  5.          return 0;
  6.  
  7.      /* make sure the tooltip has disappeared before deleting it */
  8. +
  9. +    /* Fix for Photoshop tooltips */
  10. +    if (infoPtr -> nCurrentTool == -1)
  11. +        infoPtr->nCurrentTool = nTool;
  12. +    /* End of fix */
  13. +
  14.      TOOLTIPS_Hide(infoPtr);
  15.  
  16.      /* delete text string */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement