Skip to content

Instantly share code, notes, and snippets.

@fjenett
Created March 31, 2010 07:08
Show Gist options
  • Save fjenett/350034 to your computer and use it in GitHub Desktop.
Save fjenett/350034 to your computer and use it in GitHub Desktop.
// manually setting the window (frame) title in Processing
void setup()
{
size( 200, 200 ); // needs to be first!
if ( this.frame != null )
this.frame.setTitle( "my funky title" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment