Skip to content

Commit

Permalink
fix: Remove black title bar icon placeholder for now
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Sep 10, 2024
1 parent 6ccab12 commit 0cbf169
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugins/bundled/source/window_decoration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,9 @@ namespace fene::plugin::bundled {

if (FenestraManager::System::isBorderlessWindowModeEnabled()) {
#if defined(OS_WINDOWS)
ImGui::SetCursorPosX(5_scaled);
ImGui::Image(s_logoTexture, ImVec2(menuBarHeight, menuBarHeight));
// TODO: Add a way to specify the logo image
// ImGui::SetCursorPosX(5_scaled);
// ImGui::Image(s_logoTexture, ImVec2(menuBarHeight, menuBarHeight));
ImGui::SetCursorPosX(5_scaled);
ImGui::InvisibleButton("##logo", ImVec2(menuBarHeight, menuBarHeight));
if (ImGui::IsItemHovered() && ImGui::IsAnyMouseDown())
Expand Down

0 comments on commit 0cbf169

Please sign in to comment.