ソースを参照

LibGUI: Fix debug line causing crash when drag event has no mime data

Resolves #10618.
Kemal Zebari 1 年間 前
コミット
771467f92f
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Userland/Libraries/LibGUI/AbstractView.cpp

+ 1 - 1
Userland/Libraries/LibGUI/AbstractView.cpp

@@ -791,7 +791,7 @@ void AbstractView::drag_enter_event(DragEvent& event)
     //       We might be able to reduce event traffic by communicating the set of drag-accepting
     //       rects in this widget to the windowing system somehow.
     event.accept();
-    dbgln_if(DRAG_DEBUG, "accepting drag of {}", event.mime_types().first());
+    dbgln_if(DRAG_DEBUG, "accepting drag of {}", event.mime_types());
 }
 
 void AbstractView::drag_move_event(DragEvent& event)