mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Skip 5 points from left border before drawing text
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5761 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6882c20105
commit
bcb42750ab
1 changed files with 4 additions and 0 deletions
|
@ -503,6 +503,10 @@
|
|||
|
||||
[super drawWithFrame: cellFrame inView: view];
|
||||
|
||||
// Skip 5 points from left side
|
||||
cellFrame.origin.x += 5;
|
||||
cellFrame.size.width -= 5;
|
||||
|
||||
[self _drawText: [self titleOfSelectedItem] inFrame: cellFrame];
|
||||
|
||||
if (_pbcFlags.pullsDown)
|
||||
|
|
Loading…
Reference in a new issue