Skip to content

Commit 8283e2e

Browse files
authored
multicore-sys-monitor v3.1.5: Avoids freeze at startup (#7925)
1 parent fa2269d commit 8283e2e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

multicore-sys-monitor@ccadeptic23/files/multicore-sys-monitor@ccadeptic23/6.4/applet.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,6 @@ class MCSM extends Applet.IconApplet {
298298
this.graphArea.width = 1;
299299
this.graphArea.height = this.panelHeight * global.ui_scale;
300300

301-
this.graphArea.connect('repaint', (area) => this.onGraphRepaint(area));
302-
303301
this.multiCpuGraph = new Graphs.GraphVBars(this.graphArea, this);
304302
this.memoryGraph = new Graphs.GraphPieChart(this.graphArea, this);
305303
this.swapGraph = new Graphs.GraphVBars(this.graphArea, this);
@@ -319,6 +317,7 @@ class MCSM extends Applet.IconApplet {
319317
this.diskUsageGraph = new Graphs.GraphPieChart(this.graphArea, this);
320318

321319
this.actor.add_actor(this.graphArea);
320+
this.graphArea.connect('repaint', (area) => this.onGraphRepaint(area));
322321
}
323322

324323
set_panelHeight() {

multicore-sys-monitor@ccadeptic23/files/multicore-sys-monitor@ccadeptic23/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v3.1.5~20251029
2+
* Avoids freeze at startup.
3+
* Fixes [#7898](https://github.com/linuxmint/cinnamon-spices-applets/issues/7898)
4+
15
### v3.1.4~20251021
26
* Avoids random freezes.
37
* Fixes [#7898](https://github.com/linuxmint/cinnamon-spices-applets/issues/7898)

multicore-sys-monitor@ccadeptic23/files/multicore-sys-monitor@ccadeptic23/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"uuid": "multicore-sys-monitor@ccadeptic23",
33
"name": "Multi-Core System Monitor",
4-
"version": "3.1.4",
4+
"version": "3.1.5",
55
"description": "Displays in realtime the cpu usage for each core/cpu and overall memory usage.",
66
"multiversion": true,
77
"cinnamon-version": [

0 commit comments

Comments
 (0)