Skip to content

Commit 1b59d6e

Browse files
committed
Merge branch 'patch-release'
2 parents 65c5c55 + 845fc85 commit 1b59d6e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

examples/strings/regularExpressionExample/src/ofApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void ofApp::draw(){
6363
while(getline(file,line)){
6464
if(line.empty() == false) {
6565
string minutes = grepStringInRegex(line, "[0-9]+:[0-9]+");
66-
string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]])");
66+
string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]]");
6767
ofDrawBitmapString("Time:"+minutes, 400, posY);
6868
ofDrawBitmapString("Sentence:"+sentence, 500, posY);
6969
posY += 20;

scripts/templates/osx/openFrameworks-Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,7 @@
2222
<string>This app needs to access the camera</string>
2323
<key>NSMicrophoneUsageDescription</key>
2424
<string>This app needs to access the microphone</string>
25+
<key>NSHighResolutionCapable</key>
26+
<false/>
2527
</dict>
2628
</plist>

0 commit comments

Comments
 (0)