summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'riscos')
-rw-r--r--riscos/gui.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/riscos/gui.c b/riscos/gui.c
index 5b8a3ec2b..f65d89f85 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -278,15 +278,24 @@ nsurl *gui_get_resource_url(const char *path)
nsurl *url = NULL;
/* Map paths first */
- if (strcmp(path, "adblock.css") == 0)
+ if (strcmp(path, "adblock.css") == 0) {
path = "AdBlock";
- else if (strcmp(path, "default.css") == 0)
+
+ } else if (strcmp(path, "default.css") == 0) {
path = "CSS";
- else if (strcmp(path, "quirks.css") == 0)
+
+ } else if (strcmp(path, "quirks.css") == 0) {
path = "Quirks";
- else if (strcmp(path, "favicon.ico") == 0)
+
+ } else if (strcmp(path, "favicon.ico") == 0) {
path = "Icons/content.png";
+ } else if (strcmp(path, "user.css") == 0) {
+ /* Special case; this file comes from Choices: */
+ nsurl_create("file:///Choices:WWW/NetSurf/User", &url);
+ return url;
+ }
+
path_len = strlen(path);
/* Find max URL length */