Skip to content

Commit 36266d3

Browse files
committed
done
1 parent fc10146 commit 36266d3

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Opendream (Varun Shenoy, Eric Zhou, Rahul Shiv, Shashank Rammoorthy)
3+
Copyright (c) 2023 Opendream (Varun Shenoy, Eric Lou, Rahul Shiv, Shashank Rammoorthy)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ The method has a few requirements:
7676

7777
## Contributions and Licensing
7878

79-
_Opendream was built by Varun Shenoy, Eric Zhou, Shashank Rammoorthy, and Rahul Shiv as a part of Stanford's [CS 348K](https://cs348k.stanford.edu/)._
79+
_Opendream was built by Varun Shenoy, Eric Lou, Shashank Rammoorthy, and Rahul Shiv as a part of Stanford's [CS 348K](https://cs348k.stanford.edu/)._
8080

8181
Feel free to provide any contibutions you deem necessary or useful. This project is licensed under the MIT License.

opendream/canvas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def add_layer(self, layer: Layer):
3737
def delete_layer(self, layer_id: str) -> bool:
3838
# and delete all layers that came after it
3939
for i, layer_name in enumerate(self.ordering):
40-
if layer_name == layer_id:
40+
if layer_name == layer_id:
4141
del self.layers[layer_name]
4242
for layer_name in self.ordering[i+1:]:
4343
del self.layers[layer_name]

webapp/opendream-ui/src/components/Navbar.js

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export const Navbar = ({ setCurrentState, setImage }) => {
4545
setExtensionLink("");
4646
success();
4747
setIsModalOpen(false);
48+
window.location.reload(true);
4849
});
4950
};
5051
const handleCancel = () => {

0 commit comments

Comments
 (0)