dmitrysmagin / dmenu

Automatically exported from code.google.com/p/dmenu
3 stars 4 forks source link

Menuitem text overlapping #10

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Some user still report this problem after dmenu 0.3. Probably due to menu
item icon size. Need to investigate further.

Original issue reported on code.google.com by mr.rook...@gmail.com on 8 Aug 2009 at 10:52

GoogleCodeExporter commented 9 years ago
Should be fixed in r6. Reason is in SDL_BlitSurface(), the final blit rectangle 
is
saved in dstrect after all clipping is performed, i.e. dstrect will be modified 
in
this case, which caused the text dstrect to be wrongly calculated after this. 
We need
to calculate the text dstrect before doing all the blitting.

Original comment by mr.rook...@gmail.com on 8 Aug 2009 at 4:08