Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of Ticket #809


Ignore:
Timestamp:
11/27/09 11:32:44 (14 years ago)
Author:
abeham
Comment:

prettified description

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #809 – Description

    initial v1  
    1 In ItemListView_T.cs line 124:
     1In !ItemListView_T.cs line 124:
     2{{{
    23removeButton.Enabled = false;
    34if(itemsListView.SelectedItems.Count > 0) {
    45  removeButton.Enabled = true;
    56}
    6 
     7}}}
    78should better be
    8 
     9{{{
    910if (itemsListView.SelectedItems.Count > 0)
    1011  removeButton.Enabled = true;
    1112else
    1213  removeButton.Enabled = false;
    13 
     14}}}
    1415My assumption is that switching removeButton from disabled to enabled causes a GUI update every time an item is added to the selection. This can also be seen in the GUI.
    1516