Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[nebula-dev] Bugfix

Bugdesscription: In some Example Snippets (like CompositeTabelSnippet2) scrolling was not passible anymore. This Fix resolves the issue.

In InternalCompositeTable.java - Line 1147, please replace

           int delta = topRow - vSlider.getSelection();
           int oldCurrentRow = currentRow;
           currentRow += delta;

with

           int oldCurrentRow = currentRow;
           currentRow = vSlider.getSelection();

After this fix all the examples can be scrolled without crashing. I am using SWT 3.3.

With best regards,
Daniel Migowski

PS: How can I get at least readonly CVS access to this project? If I had i could easily create patches.
--

|¯¯|¯¯|    *IKOffice GmbH             Daniel Migowski*
|  |  |/|                            Mail: dmigowski@xxxxxxxxxxx <mailto:dmigowski@xxxxxxxxxxx>
|  | // |  Nordstr. 10               Tel.: +49 (441) 21 98 89 52
|  | \\ |  26135 Oldenburg           Fax.: +49 (441) 21 98 89 55
|__|__|\|  http://www.ikoffice.de    Mob.: +49 (176) 22 31 20 76

           Geschäftsführer: Ingo Kuhlmann, Daniel Migowski
           Amtsgericht Oldenburg, HRB 201467
           Steuernummer: 64/211/01864



Back to the top