From 7ae50bbc4bf6de1d6edf794e25f84ea9b333e63e Mon Sep 17 00:00:00 2001 From: Wizzup? Date: Thu, 17 Dec 2009 00:44:07 +0000 Subject: [PATCH] Removed "Pos: " and "Color: " on Linux, until the Picker rewrite. git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@281 3f818213-9676-44b0-a9b4-5e4c4e03d09d --- Units/MMLAddon/colourpicker.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Units/MMLAddon/colourpicker.pas b/Units/MMLAddon/colourpicker.pas index bfa8313..405a906 100644 --- a/Units/MMLAddon/colourpicker.pas +++ b/Units/MMLAddon/colourpicker.pas @@ -250,9 +250,9 @@ begin Color := WidgetSet.DCGetPixel(ImageHandle, TempPoint.X, TempPoint.Y); Rectangle(NoteHandle,1,1,85,32); // Text:='Pos: ' + inttostr(TempPoint.x - Client.Rect.Left) + ',' + inttostr(TempPoint.y - Client.Rect.Bottom); - Text:='Pos: ' + inttostr(TempPoint.x - targetleft) + ',' + inttostr(TempPoint.y - targettop); + Text:={'Pos: ' + }inttostr(TempPoint.x - targetleft) + ',' + inttostr(TempPoint.y - targettop); ExtTextOut(NoteHandle, 5, 3,0,nil,pchar(text),length(text),nil); - Text := 'Color: ' + inttostr(Color); + Text := {'Color: ' + }inttostr(Color); ExtTextOut(NoteHandle, 5, 15,0,nil,pchar(text),length(text),nil); BitBlt( ImageHandle, TempPoint.x + 5, TempPoint.y + 5,147,33,NoteHandle,0,0,SRCCOPY); Brush.Color := Color;