Skip to content

Commit

Permalink
increase opacity by 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Morilli committed Jul 31, 2022
1 parent a335aec commit 417f09e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ int WINAPI WinMain(HINSTANCE hInstance, __attribute__((unused)) HINSTANCE hPrevI
MessageBox(NULL, "Window Creation Failed!", "Error!", MB_ICONEXCLAMATION | MB_OK);
return 0;
}
SetLayeredWindowAttributes(mainWindow, 0, 230, LWA_ALPHA);
SetLayeredWindowAttributes(mainWindow, 0, 231, LWA_ALPHA);

// create a tree view
treeview = CreateWindowEx(WS_EX_CLIENTEDGE, WC_TREEVIEW, NULL, WS_CHILD | TVS_HASLINES | TVS_HASBUTTONS | TVS_LINESATROOT | TVS_DISABLEDRAGDROP | TVS_SHOWSELALWAYS, 6, 80, 480, 380, mainWindow, NULL, hInstance, NULL);
Expand Down

0 comments on commit 417f09e

Please sign in to comment.