Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/cascadia/WindowsTerminal/IslandWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <dwmapi.h>
#include <TerminalThemeHelpers.h>
#include <CoreWindow.h>
#include <shellapi.h>

extern "C" IMAGE_DOS_HEADER __ImageBase;

Expand Down Expand Up @@ -387,8 +388,10 @@

_rootGrid = winrt::Windows::UI::Xaml::Controls::Grid();
_source.Content(_rootGrid);

DragAcceptFiles(_window.get(), TRUE);
// cspell:ignore MSGFLT_ADD WM_DROPFILES

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

MSGFLT is not a recognized word. (unrecognized-spelling)
ChangeWindowMessageFilter(WM_DROPFILES, MSGFLT_ADD);
// initialize the taskbar object

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

MSGFLT is not a recognized word. (unrecognized-spelling)
if (auto taskbar = wil::CoCreateInstanceNoThrow<ITaskbarList3>(CLSID_TaskbarList))
{
if (SUCCEEDED(taskbar->HrInit()))
Expand Down
Loading