Skip to content

Commit 2647a17

Browse files
committed
Adjust the spacing of the selected CPUfreq governor item
1 parent b67dbd5 commit 2647a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/cpufreq/cpufreq.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ cpufreq_menu(cpufreq *cf){
304304
for( l = cf->governors; l; l = l->next )
305305
{
306306
if(strcmp((char*)l->data, cf->cur_governor) == 0){
307-
snprintf(buff, sizeof(buff), "▸ %s", l->data);
307+
snprintf(buff, sizeof(buff), "▸ %s", l->data);
308308
menuitem = GTK_MENU_ITEM(gtk_menu_item_new_with_label(strdup(buff)));
309309
}else{
310310
snprintf(buff, sizeof(buff), " %s", l->data);

0 commit comments

Comments
 (0)