Browse Source

#else instead of #elif

Heilig Benedek 7 years ago
parent
commit
ce8af7d499
1 changed files with 1 additions and 1 deletions
  1. 1 1
      atom/browser/native_window.cc

+ 1 - 1
atom/browser/native_window.cc

@@ -288,7 +288,7 @@ gfx::Size NativeWindow::GetContentMaximumSize() const {
   gfx::Size maximum_size = GetContentSizeConstraints().GetMaximumSize();
 #if defined(OS_WIN)
   return GetExpandedWindowSize(this, maximum_size);
-#elif
+#else
   return maximum_size;
 #endif
 }