diff --git a/Plugins/LfpViewer/LfpChannelDisplayInfo.cpp b/Plugins/LfpViewer/LfpChannelDisplayInfo.cpp index e09617469..4ef015e5c 100644 --- a/Plugins/LfpViewer/LfpChannelDisplayInfo.cpp +++ b/Plugins/LfpViewer/LfpChannelDisplayInfo.cpp @@ -325,8 +325,7 @@ bool LfpChannelDisplayInfo::isChannelNumberHidden() String LfpChannelDisplayInfo::getTooltip() { const bool showChannelNumbers = options->getChannelNameState(); - const String channelString = (isChannelNumberHidden() ? ("--") : showChannelNumbers ? String (getChannelNumber() + 1) - : getName()); + const String channelString = showChannelNumbers ? String (getChannelNumber() + 1) : getName(); return channelString; -} \ No newline at end of file +}