Table 0.98.9:

- big fonts
- use system colors
- use @notify to show load/save file status
- fixed: grid do not steal focus when scroll used
- fixed: window restore after making it very small
update Table icon and add it APP+

git-svn-id: svn://kolibrios.org@7504 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2018-10-27 17:55:12 +00:00
parent 3a9d0253bb
commit cdb20ade83
7 changed files with 179 additions and 161 deletions

View File

@@ -19,8 +19,8 @@ void kos_DrawCutTextSmall(Word x, Word y, int areaWidth, Dword textColour, char
{
if (textPtr) {
int textLen = strlen(textPtr);
if (textLen*6 > areaWidth) textLen = areaWidth / 6;
kos_WriteTextToWindow(x,y,0,textColour,textPtr,textLen);
if (textLen*8 > areaWidth) textLen = areaWidth / 8;
kos_WriteTextToWindow(x,y,0x10,textColour,textPtr,textLen);
}
}