Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
    • Switch to GitLab Next
  • Sign in / Register
  • Lazarus Lazarus
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 2,083
    • Issues 2,083
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
  • Merge requests 9
    • Merge requests 9
  • Deployments
    • Deployments
    • Releases
  • Analytics
    • Analytics
    • Value stream
    • Code review
    • Insights
    • Issue
    • Repository
  • External wiki
    • External wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar

GitLab 15.0 is launching on May 22! This version brings many exciting improvements, but also removes deprecated features and introduces breaking changes that may impact your workflow. To see what is being deprecated and removed, please visit Breaking changes in 15.0 and Deprecations.

  • FPC
  • Lazarus
  • LazarusLazarus
  • Issues
  • #28782
Closed
Open
Created Oct 06, 2015 by FPC Admin account@fpc_adminOwner

TCustomGrid.GetEditorBorderStyle does not get correctly BorderStyle if editor is FPickListEditor

Original Reporter info from Mantis: lacak @lacak.sk
  • Reporter name: LacaK

Description:

5087 function TCustomGrid.GetEditorBorderStyle: TBorderStyle;
5088 begin
5089 result := bsSingle;
5090 if FEditor = FstringEditor then
5091 Result := FStringEditor.BorderStyle
5092 else if FEditor = FPickListEditor then
5093 Result := FStringEditor.BorderStyle;
5094 end;

On line 5093 probably should be:
5093 Result := FPickListEditor.BorderStyle;

Mantis conversion info:

  • Mantis ID: 28782
  • Version: 1.4.4
  • Fixed in version: 1.6.2
  • Fixed in revision: r52912 (#b1262a95)
  • Target version: 1.6.2
Assignee
Assign to
Time tracking