mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 19:10:48 +00:00
fix typo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28847 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
481441ccea
commit
297c9bfd1a
2 changed files with 7 additions and 7 deletions
|
@ -175,12 +175,12 @@ APPKIT_EXPORT NSString *GSScrollerVerticalSlot;
|
||||||
* to display the tile.
|
* to display the tile.
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
GSThemeFillStyleNone, /** CM image is not drawn */
|
GSThemeFillStyleNone = 0, /** CM image is not drawn */
|
||||||
GSThemeFillStyleScale, /** CM image is scaled to fit */
|
GSThemeFillStyleScale = 1, /** CM image is scaled to fit */
|
||||||
GSThemeFillStyleRepeat, /** CM image is tiled from bottom left */
|
GSThemeFillStyleRepeat = 2, /** CM image is tiled from bottom left */
|
||||||
GSThemeFillStyleCenter, /** CM image is tiled from the center */
|
GSThemeFillStyleCenter = 3, /** CM image is tiled from the center */
|
||||||
GSThemeFillStyleMatrix, /** a matrix of nine separated images */
|
GSThemeFillStyleMatrix = 4, /** a matrix of nine separated images */
|
||||||
GSThemeFillStyleScaleAll /** All 'stretchable' images (i.e. not
|
GSThemeFillStyleScaleAll = 5 /** All 'stretchable' images (i.e. not
|
||||||
the four corners) are scaled to fill
|
the four corners) are scaled to fill
|
||||||
their area, instead of being repeated */
|
their area, instead of being repeated */
|
||||||
} GSThemeFillStyle;
|
} GSThemeFillStyle;
|
||||||
|
|
|
@ -1085,7 +1085,7 @@ withRepeatedImage: (NSImage*)image
|
||||||
fromRect: rects[TileCM]
|
fromRect: rects[TileCM]
|
||||||
center: !flipped];
|
center: !flipped];
|
||||||
|
|
||||||
NSLog(@"rect %@ too small fire tiles %@",
|
NSLog(@"rect %@ too small for tiles %@",
|
||||||
NSStringFromSize(rect.size), NSStringFromSize(tsz));
|
NSStringFromSize(rect.size), NSStringFromSize(tsz));
|
||||||
|
|
||||||
return inFill;
|
return inFill;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue