From 3f0f04abec4ef1d12c670bca866db76a5a7d4d6a Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 30 Apr 2024 14:21:32 -0400 Subject: simulator fixes (#2844) * fix slide and control panel rendering bugs * clear marker lists when clearing stitch plan * switch simulator back to wx * remove unused function * fix off-by-one error in color bar * avoid overlapping command symbols of different types * don't maximize simulator * adjust alignment * remove unused API server * bugfix * focus entire simulator panel * rename simulator/realistic preview -> simulator * experimental: background color picker * set pagecolor to background color by default * satisfy macos * toggle jumps on drawing canvas * clear frog family --------- Co-authored-by: Kaalleen --- lib/api/lang.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 lib/api/lang.py (limited to 'lib/api/lang.py') diff --git a/lib/api/lang.py b/lib/api/lang.py deleted file mode 100644 index 73c190f4..00000000 --- a/lib/api/lang.py +++ /dev/null @@ -1,11 +0,0 @@ -import os - -from flask import Blueprint, jsonify - -languages = Blueprint('languages', __name__) - - -@languages.route('') -def get_lang(): - languages = dict(os.environ) - return jsonify(languages) -- cgit v1.2.3