Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Matrix Copy Phrase Spelled Text #356

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions bcipy/display/paradigm/matrix/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from bcipy.display.main import PreviewParams, init_preview_button_handler
from bcipy.display.paradigm.matrix.layout import symbol_positions
from bcipy.helpers.stimuli import resize_image
from bcipy.helpers.symbols import alphabet, qwerty_order, frequency_order
from bcipy.helpers.symbols import alphabet, frequency_order, qwerty_order
from bcipy.helpers.triggers import _calibration_trigger

logger = logging.getLogger(SESSION_LOG_FILENAME)
Expand Down Expand Up @@ -378,6 +378,7 @@ def wait_screen(self, message: str, message_color: str) -> None:

Define what happens on the screen when a user pauses a session.
"""
self.draw_components()

# Construct the wait message
wait_message = visual.TextStim(win=self.window,
Expand All @@ -399,7 +400,7 @@ def wait_screen(self, message: str, message_color: str) -> None:
wait_logo.draw()

except Exception as e:
self.logger.exception(
logger.exception(
f'Cannot load logo image from path=[{BCIPY_LOGO_PATH}]')
raise e

Expand Down
Loading