You've already forked lazarus-ccr
tvplanit: Fix DayView in-place editor reaching into adjacent column
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4826 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -149,7 +149,7 @@ object MainForm: TMainForm
|
|||||||
}
|
}
|
||||||
ShowResourceName = True
|
ShowResourceName = True
|
||||||
LineColor = clGray
|
LineColor = clGray
|
||||||
GutterWidth = 7
|
GutterWidth = 5
|
||||||
DateLabelFormat = 'dddd, mmmm dd, yyyy'
|
DateLabelFormat = 'dddd, mmmm dd, yyyy'
|
||||||
Granularity = gr30Min
|
Granularity = gr30Min
|
||||||
DefaultTopHour = h_07
|
DefaultTopHour = h_07
|
||||||
|
@ -1945,10 +1945,10 @@ begin
|
|||||||
dvInPlaceEditor.OnExit := EndEdit;
|
dvInPlaceEditor.OnExit := EndEdit;
|
||||||
end;
|
end;
|
||||||
dvInPlaceEditor.SetBounds(
|
dvInPlaceEditor.SetBounds(
|
||||||
dvActiveIconRec.Right + FGutterWidth + TextMargin,
|
dvActiveIconRec.Left + FGutterWidth + TextMargin,
|
||||||
dvActiveEventRec.Top + TextMargin,
|
dvActiveEventRec.Top + TextMargin,
|
||||||
dvActiveEventRec.Right,
|
dvActiveEventRec.Right - dvActiveIconRec.Left - FGutterWidth - TextMargin,
|
||||||
dvActiveEventRec.Bottom - 1
|
dvActiveEventRec.Bottom - dvActiveEventRec.Top - TextMargin
|
||||||
);
|
);
|
||||||
dvInPlaceEditor.Show;
|
dvInPlaceEditor.Show;
|
||||||
dvInPlaceEditor.Text := FActiveEvent.Description;
|
dvInPlaceEditor.Text := FActiveEvent.Description;
|
||||||
|
Reference in New Issue
Block a user