-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Milestone
Description
I'm using Ubuntu 22.04 with OF version: of_v0.11.2_linux64gcc6_release
When I try running the command ofSystemLoadDialog nothing happens, no error messages or any other indications of a problem.
This is a simplified version illustrating the problem:
`#include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
}
//--------------------------------------------------------------
void ofApp::update(){
}
//--------------------------------------------------------------
void ofApp::draw(){
}
//--------------------------------------------------------------
void ofApp::keyPressed(int key){
if(key==' ')
{
ofFileDialogResult result = ofSystemLoadDialog("Load file");
if(result.bSuccess) {
string path = result.getPath();
// load your file at `path`
}
}
}
`