mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-14 10:51:04 +00:00
Don't wrap text in table view headers by default. Partially fixes #30020.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@32505 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e39fed5a42
commit
d7c8c25e08
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-03-09 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Source/NSTableHeaderCell.m (-initTextCell:): Don't wrap text in
|
||||
table view headers by default. This partially fixes #30020.
|
||||
|
||||
2011-03-08 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/NSLayoutManager.m: Implement temporary attributes
|
||||
|
@ -279,7 +284,7 @@
|
|||
* Source/NSWindow.m (-setContentView:): Revert Wolfgangs change
|
||||
and add a different solution as explained in his mail.
|
||||
|
||||
2011-02-14 Wolfgang Lux <wolfgang.lux@gmail.com>>
|
||||
2011-02-14 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Source/NSApplication.m (-_initDefaults):
|
||||
* Source/NSWindow.m (-_initDefaults):
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
[self setBackgroundColor: [NSColor controlShadowColor]];
|
||||
[self setDrawsBackground: YES];
|
||||
[self setFont: [NSFont titleBarFontOfSize: 0]];
|
||||
[self setWraps: NO];
|
||||
// This is not exactly true
|
||||
_cell.is_bezeled = YES;
|
||||
_cell.is_bordered = NO;
|
||||
|
|
Loading…
Reference in a new issue