Add tooltips for the message indicators (#377)

remotes/origin/HEAD
Konstantinos Sideris 7 years ago
parent 8d3ef470f9
commit 3fb57ac049
  1. 19
      src/timeline/TimelineItem.cpp

@ -94,6 +94,25 @@ void
StatusIndicator::setState(StatusIndicatorState state)
{
state_ = state;
switch (state) {
case StatusIndicatorState::Encrypted:
setToolTip(tr("Encrypted"));
break;
case StatusIndicatorState::Received:
setToolTip(tr("Delivered"));
break;
case StatusIndicatorState::Read:
setToolTip(tr("Seen"));
break;
case StatusIndicatorState::Sent:
setToolTip(tr("Sent"));
break;
case StatusIndicatorState::Empty:
setToolTip("");
break;
}
update();
}

Loading…
Cancel
Save