View Issue Details

IDProjectCategoryView StatusLast Update
0004763JEDI VCL00 JVCL Componentspublic2009-07-03 12:24
ReportergpcarettiAssigned Toobones 
PrioritynormalSeveritytweakReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.36 
Target VersionFixed in Version3.38 
Summary0004763: Behaviour is inverted for values drFromRight and drFromLeft in the ScrollDirection property
DescriptionWhile drFromBottom scrolls the text from bottom to top and drFromTop scrolls
the text from top to bottom, drFromRight wrongly scrolls the text from left
to right instead of right to left. Viceversa does drFromLeft.
Additional InformationSolution:
Into the method
    TJvScrollText.OnScroll(Sender: TObject)
simply swaps the lines 324 and 332 (drFromRight and drFromLeft case values):

  case ScrollDirection of
    drFromTop:
    ...
    drFromRight: // <- line swapped (see below)
    ...
    drFromLeft: // <- line swapped (see above)
    ...
    drFromBottom:
    ...
  end;
TagsNo tags attached.

Relationships

related to 0004766 resolvedobones TJvScrollText: Code donation to provide events to TJvScrollText 

Activities

gpcaretti

2009-05-04 10:41

reporter   ~0015511

I forgot the name of the VCL affected: TJvScrollText

obones

2009-06-16 11:38

administrator   ~0015684

Please provide the zipped sources of a sample application showing this

2009-06-16 20:24

 

JvScrollTextBug.zip (4,230 bytes)

gpcaretti

2009-06-16 20:25

reporter   ~0015695

Please find attached the sample application requested

obones

2009-07-03 12:24

administrator   ~0015749

Thanks, this is now in SVN

Issue History

Date Modified Username Field Change
2009-05-04 10:28 gpcaretti New Issue
2009-05-04 10:41 gpcaretti Note Added: 0015511
2009-06-16 11:38 obones Note Added: 0015684
2009-06-16 11:38 obones Status new => feedback
2009-06-16 20:24 gpcaretti File Added: JvScrollTextBug.zip
2009-06-16 20:25 gpcaretti Note Added: 0015695
2009-07-03 11:57 obones Relationship added related to 0004766
2009-07-03 12:24 obones Note Added: 0015749
2009-07-03 12:24 obones Status feedback => resolved
2009-07-03 12:24 obones Fixed in Version => Daily / SVN
2009-07-03 12:24 obones Resolution open => fixed
2009-07-03 12:24 obones Assigned To => obones