From 5c59ca062cc1de433774e0678c079d3b32b21610 Mon Sep 17 00:00:00 2001
From: "K. Michael Fox" <kmichaelfox.contact@gmail.com>
Date: Tue, 7 Nov 2017 13:25:07 -0800
Subject: [PATCH] Add comment demarcation of open-ephys addition to juce core
 library code

---
 .../modules/juce_gui_basics/native/juce_linux_Windowing.cpp     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Windowing.cpp b/JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Windowing.cpp
index fbf5bb9d9..701ffe3b7 100644
--- a/JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Windowing.cpp
+++ b/JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Windowing.cpp
@@ -1637,12 +1637,14 @@ public:
                 hints->min_height = hints->max_height = hints->height;
                 hints->flags |= PMinSize | PMaxSize;
             }
+            /* ----------- OPEN_EPHYS ADDITION ----------- */
             else
             {
                 hints->min_width = 484;
                 hints->min_height = 437;
                 hints->flags |= PMinSize;
             }
+            /* --------- END OPEN_EPHYS ADDITION --------- */
 
             XSetWMNormalHints (display, windowH, hints);
             XFree (hints);
-- 
GitLab