diff --git a/src/gui/storyCaptionWidgets.tw b/src/gui/storyCaptionWidgets.tw
deleted file mode 100644
index ce839f41640d134d11dbf77287039fbf8f4a8cc3..0000000000000000000000000000000000000000
--- a/src/gui/storyCaptionWidgets.tw
+++ /dev/null
@@ -1,35 +0,0 @@
-:: StoryCaptionWidgets [widget nobr]
-
-<<widget "userButton">>
-	<<set _Pass = passage()>>
-	/* Must use link so spacebar shortcut will work. */
-	/* Don't remove these spans, it will break things. */
-	<<if _Pass != "End Week">>
-		<<if _Pass == "Main">>
-			<strong>
-				<div id="endWeekButton">
-					<<link "END WEEK">>
-						<<run endWeek()>>
-					<</link>>
-					<span class="hotkey">
-						<<print App.UI.Hotkeys.hotkeys("endWeek")>>
-					</span>
-				</div>
-			</strong>
-			<<if $rulesAssistantAuto == 1 && DefaultRulesError()>>
-				<div>@@.yellow;WARNING: Rules Assistant has rules with errors!@@</div>
-			<</if>>
-		<<else>>
-			<strong><div id="nextButton">
-			<<if $nextButton != " ">>
-				<<link "$nextButton">>
-					<<goto $nextLink>>
-				<</link>>
-				<span class="hotkey">
-					<<print App.UI.Hotkeys.hotkeys("nextLink")>>
-				</span>
-			<</if>>
-			</div></strong>
-		<</if>>
-	<</if>>
-<</widget>>