Bugfix: only invert if listitem ist clicked
parent
da86eea088
commit
9781c20838
|
@ -220,9 +220,10 @@ int EventHandler::pointerHandler(const int type, const int par1, const int par2)
|
||||||
else if (_listView != nullptr)
|
else if (_listView != nullptr)
|
||||||
{
|
{
|
||||||
_tempItemID = _listView->listClicked(par1, par2);
|
_tempItemID = _listView->listClicked(par1, par2);
|
||||||
_listView->invertEntryColor(_tempItemID);
|
|
||||||
if (_tempItemID != -1)
|
if (_tempItemID != -1)
|
||||||
{
|
{
|
||||||
|
_listView->invertEntryColor(_tempItemID);
|
||||||
|
|
||||||
if (_nextcloud.getItems().at(_tempItemID).getType() == Itemtype::IFOLDER)
|
if (_nextcloud.getItems().at(_tempItemID).getType() == Itemtype::IFOLDER)
|
||||||
{
|
{
|
||||||
openFolder();
|
openFolder();
|
||||||
|
|
Loading…
Reference in New Issue