Destroy taskbar name after destroying tasks
This commit is contained in:
parent
1d15c41c1b
commit
ce0acdbd5b
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,6 @@ void default_taskbar()
|
||||||
|
|
||||||
void cleanup_taskbar()
|
void cleanup_taskbar()
|
||||||
{
|
{
|
||||||
cleanup_taskbarname();
|
|
||||||
if (win_to_task) {
|
if (win_to_task) {
|
||||||
while (g_hash_table_size(win_to_task)) {
|
while (g_hash_table_size(win_to_task)) {
|
||||||
GHashTableIter iter;
|
GHashTableIter iter;
|
||||||
|
@ -99,6 +98,7 @@ void cleanup_taskbar()
|
||||||
g_hash_table_destroy(win_to_task);
|
g_hash_table_destroy(win_to_task);
|
||||||
win_to_task = NULL;
|
win_to_task = NULL;
|
||||||
}
|
}
|
||||||
|
cleanup_taskbarname();
|
||||||
for (int i = 0; i < num_panels; i++) {
|
for (int i = 0; i < num_panels; i++) {
|
||||||
Panel *panel = &panels[i];
|
Panel *panel = &panels[i];
|
||||||
for (int j = 0; j < panel->num_desktops; j++) {
|
for (int j = 0; j < panel->num_desktops; j++) {
|
||||||
|
|
Loading…
Reference in a new issue