mirror of
https://github.com/xzeldon/htop.git
synced 2025-04-20 08:45:45 +03:00
fix width of AffinitPanel
The panel size of 15 includes the gap to the next panel, thus use 14 as the minimum size and let the caller of `AffinityPanel_new` handle the gap.
This commit is contained in:
parent
df7e4fcdc0
commit
94b8c2e714
1
Action.c
1
Action.c
@ -320,6 +320,7 @@ static Htop_Reaction actionSetAffinity(State* st) {
|
|||||||
if (!affinity1) return HTOP_OK;
|
if (!affinity1) return HTOP_OK;
|
||||||
int width;
|
int width;
|
||||||
Panel* affinityPanel = AffinityPanel_new(st->pl, affinity1, &width);
|
Panel* affinityPanel = AffinityPanel_new(st->pl, affinity1, &width);
|
||||||
|
width += 1; /* we add a gap between the panels */
|
||||||
Affinity_delete(affinity1);
|
Affinity_delete(affinity1);
|
||||||
|
|
||||||
void* set = Action_pickFromVector(st, affinityPanel, width, true);
|
void* set = Action_pickFromVector(st, affinityPanel, width, true);
|
||||||
|
@ -352,7 +352,9 @@ Panel* AffinityPanel_new(ProcessList* pl, Affinity* affinity, int* width) {
|
|||||||
Panel_init(super, 1, 1, 1, 1, Class(MaskItem), false, FunctionBar_new(AffinityPanelFunctions, AffinityPanelKeys, AffinityPanelEvents));
|
Panel_init(super, 1, 1, 1, 1, Class(MaskItem), false, FunctionBar_new(AffinityPanelFunctions, AffinityPanelKeys, AffinityPanelEvents));
|
||||||
|
|
||||||
this->pl = pl;
|
this->pl = pl;
|
||||||
this->width = 15;
|
/* defaults to 15, this also includes the gap between the panels,
|
||||||
|
* but this will be added by the caller */
|
||||||
|
this->width = 14;
|
||||||
|
|
||||||
this->cpuids = Vector_new(Class(MaskItem), true, DEFAULT_SIZE);
|
this->cpuids = Vector_new(Class(MaskItem), true, DEFAULT_SIZE);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user