mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-07-15 06:45:48 +00:00
release 3.1.1
* translation update * fix broken build with gcc (#87). The issue was reproduced only with gcc build and has been resolved by just replacing C-like `isnan` to `std::isnan`
This commit is contained in:
@ -20,7 +20,7 @@ X-Plasma-RemoteLocation=
|
||||
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
|
||||
X-KDE-PluginInfo-Email=esalexeev@gmail.com
|
||||
X-KDE-PluginInfo-Name=org.kde.plasma.awesomewidget
|
||||
X-KDE-PluginInfo-Version=3.0.1
|
||||
X-KDE-PluginInfo-Version=3.1.0
|
||||
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
|
||||
X-KDE-PluginInfo-Category=System Information
|
||||
X-KDE-PluginInfo-Depends=
|
||||
|
@ -290,7 +290,7 @@ void AWDataAggregator::setData(const QString &source, float value,
|
||||
else if (data[source].count()
|
||||
> configuration[QString("tooltipNumber")].toInt())
|
||||
data[source].removeFirst();
|
||||
if (isnan(value))
|
||||
if (std::isnan(value))
|
||||
value = 0.0;
|
||||
|
||||
// notifications
|
||||
|
Reference in New Issue
Block a user