From 8cf5aa2ff1c0b657fbb6def0da5c623f6f457bfe Mon Sep 17 00:00:00 2001 From: jsiegle <jsiegle@mit.edu> Date: Wed, 15 Feb 2012 14:28:54 -0500 Subject: [PATCH] Commented out lines in juce_mac_NSViewComponentPeer.mm --- Builds/Linux/build/savedState.xml | 13 ------------- Builds/Linux/build/windowState.xml | 5 ----- .../src/native/mac/juce_mac_NSViewComponentPeer.mm | 6 +++--- 3 files changed, 3 insertions(+), 21 deletions(-) delete mode 100644 Builds/Linux/build/savedState.xml delete mode 100644 Builds/Linux/build/windowState.xml diff --git a/Builds/Linux/build/savedState.xml b/Builds/Linux/build/savedState.xml deleted file mode 100644 index 9e0844420..000000000 --- a/Builds/Linux/build/savedState.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<PROCESSORGRAPH> - <SIGNALCHAIN> - <PROCESSOR name="Sources/Intan Demo Board" insertionPoint="0"/> - <PROCESSOR name="Filters/Bandpass Filter" insertionPoint="1"/> - <PROCESSOR name="Sinks/LFP Viewer" insertionPoint="2"/> - </SIGNALCHAIN> - <SIGNALCHAIN> - <PROCESSOR name="Sources/Signal Generator" insertionPoint="0"/> - <PROCESSOR name="Sinks/LFP Viewer" insertionPoint="1"/> - </SIGNALCHAIN> -</PROCESSORGRAPH> diff --git a/Builds/Linux/build/windowState.xml b/Builds/Linux/build/windowState.xml deleted file mode 100644 index fbc6626a1..000000000 --- a/Builds/Linux/build/windowState.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<MAINWINDOW> - <BOUNDS x="1899" y="136" w="971" h="884" fullscreen="0"/> -</MAINWINDOW> diff --git a/JuceLibraryCode/src/native/mac/juce_mac_NSViewComponentPeer.mm b/JuceLibraryCode/src/native/mac/juce_mac_NSViewComponentPeer.mm index 6c791d852..bb0ffc13b 100755 --- a/JuceLibraryCode/src/native/mac/juce_mac_NSViewComponentPeer.mm +++ b/JuceLibraryCode/src/native/mac/juce_mac_NSViewComponentPeer.mm @@ -1664,12 +1664,12 @@ void juce_setKioskComponent (Component* kioskModeComponent, bool enableOrDisable // is apparently still available in 64-bit apps.. if (enableOrDisable) { - SetSystemUIMode (kUIModeAllSuppressed, allowMenusAndBars ? kUIOptionAutoShowMenuBar : 0); - kioskModeComponent->setBounds (Desktop::getInstance().getMainMonitorArea (false)); + // SetSystemUIMode (kUIModeAllSuppressed, allowMenusAndBars ? kUIOptionAutoShowMenuBar : 0); + // kioskModeComponent->setBounds (Desktop::getInstance().getMainMonitorArea (false)); } else { - SetSystemUIMode (kUIModeNormal, 0); + // SetSystemUIMode (kUIModeNormal, 0); } } -- GitLab